Skip to content

Commit 1c690c6

Browse files
[Uptime] Increase timeout in attempt to fix skipped a11y test (#73078)
* 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>
1 parent f23359c commit 1c690c6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

x-pack/test/accessibility/apps/uptime.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
1717
const esArchiver = getService('esArchiver');
1818
const es = getService('es');
1919

20-
// FLAKY: https://github.com/elastic/kibana/issues/72994
21-
describe.skip('uptime', () => {
20+
describe('uptime', () => {
2221
before(async () => {
2322
await esArchiver.load('uptime/blank');
2423
await makeChecks(es, A11Y_TEST_MONITOR_ID, 150, 1, 1000, {

x-pack/test/functional/services/uptime/navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function UptimeNavigationProvider({ getService, getPageObjects }: FtrProv
4141
goToSettings: async () => {
4242
await goToUptimeRoot();
4343
await testSubjects.click('settings-page-link', 5000);
44-
await testSubjects.existOrFail('uptimeSettingsPage', { timeout: 2000 });
44+
await testSubjects.existOrFail('uptimeSettingsPage', { timeout: 10000 });
4545
},
4646

4747
checkIfOnMonitorPage: async (monitorId: string) => {

0 commit comments

Comments
 (0)