Skip to content

Commit

Permalink
[Uptime] Increase timeout in attempt to fix skipped a11y test (#73078)
Browse files Browse the repository at this point in the history
* Increase timeout in attempt to fix skipped a11y test.

* Temporarily only run uptime tests for faster flaky testing.

* Uncomment other test suites.

* Unskip test and delete comment.

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
justinkambic and elasticmachine authored Jul 27, 2020
1 parent f23359c commit 1c690c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions x-pack/test/accessibility/apps/uptime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const es = getService('es');

// FLAKY: https://github.com/elastic/kibana/issues/72994
describe.skip('uptime', () => {
describe('uptime', () => {
before(async () => {
await esArchiver.load('uptime/blank');
await makeChecks(es, A11Y_TEST_MONITOR_ID, 150, 1, 1000, {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/services/uptime/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function UptimeNavigationProvider({ getService, getPageObjects }: FtrProv
goToSettings: async () => {
await goToUptimeRoot();
await testSubjects.click('settings-page-link', 5000);
await testSubjects.existOrFail('uptimeSettingsPage', { timeout: 2000 });
await testSubjects.existOrFail('uptimeSettingsPage', { timeout: 10000 });
},

checkIfOnMonitorPage: async (monitorId: string) => {
Expand Down

0 comments on commit 1c690c6

Please sign in to comment.