mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fixes Failing test: Chrome X-Pack UI Functional Tests.x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alert_create_flyout·ts - Actions and Triggers app create alert should show save confirmation before creating alert with no actions (#85623) (#86169)
* Unskipping test * Using simpler alert type during test * Fixing test Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
527415577e
commit
9735f90991
1 changed files with 3 additions and 4 deletions
|
@ -61,8 +61,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
|
|||
await testSubjects.click('test.always-firing-SelectOption');
|
||||
}
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/85105
|
||||
describe.skip('create alert', function () {
|
||||
describe('create alert', function () {
|
||||
before(async () => {
|
||||
await pageObjects.common.navigateToApp('triggersActions');
|
||||
await testSubjects.click('alertsTab');
|
||||
|
@ -179,7 +178,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
|
|||
|
||||
it('should show save confirmation before creating alert with no actions', async () => {
|
||||
const alertName = generateUniqueKey();
|
||||
await defineAlert(alertName);
|
||||
await defineAlwaysFiringAlert(alertName);
|
||||
|
||||
await testSubjects.click('saveAlertButton');
|
||||
await testSubjects.existOrFail('confirmAlertSaveModal');
|
||||
|
@ -200,7 +199,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
|
|||
{
|
||||
name: alertName,
|
||||
tagsText: '',
|
||||
alertType: 'Index threshold',
|
||||
alertType: 'Always Firing',
|
||||
interval: '1m',
|
||||
},
|
||||
]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue