Skip to content

Commit

Permalink
Re-enable watcher FireFox functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Jan 28, 2020
1 parent 1359334 commit 3904323
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions x-pack/test/functional/apps/watcher/watcher_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ export default function({ getService, getPageObjects }) {
const esSupertest = getService('esSupertest');
const PageObjects = getPageObjects(['security', 'common', 'header', 'settings', 'watcher']);

// Failing: https://github.com/elastic/kibana/issues/56014
describe.skip('watcher_test', function() {
describe('watcher_test', function() {
before('initialize tests', async () => {
// There may be system watches if monitoring was previously enabled
// These cannot be deleted via the UI, so we need to delete via the API
Expand All @@ -34,7 +33,11 @@ export default function({ getService, getPageObjects }) {
}

await browser.setWindowSize(1600, 1000);
await PageObjects.common.navigateToApp('watcher');
// TODO: Remove the retry.try wrapper once https://github.com/elastic/kibana/issues/55985 is resolved
retry.try(async () => {
await PageObjects.common.navigateToApp('watcher');
await testSubjects.find('createWatchButton');
});
});

it('create and save a new watch', async () => {
Expand Down

0 comments on commit 3904323

Please sign in to comment.