Skip to content

Commit

Permalink
[Uptime] ml test - increase wait (#193310)
Browse files Browse the repository at this point in the history
## Summary

Resolves #179166
  • Loading branch information
dominiqueclarke authored Sep 19, 2024
1 parent 0b4d456 commit 295102e
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/functional/apps/uptime/ml_anomaly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ export default ({ getService }: FtrProviderContext) => {
const esArchiver = getService('esArchiver');
const archive = 'x-pack/test/functional/es_archives/uptime/full_heartbeat';

// FAILING ES FORWARD COMPATIBLITY: https://github.com/elastic/kibana/issues/179166
describe.skip('uptime ml anomaly', function () {
describe('uptime ml anomaly', function () {
this.tags(['skipFirefox']);
const dateStart = 'Sep 10, 2019 @ 12:40:08.078';
const dateEnd = 'Sep 11, 2019 @ 19:40:08.078';
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/services/uptime/ml_anomaly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function UptimeMLAnomalyProvider({ getService }: FtrProviderContext) {

async createMLJob() {
await testSubjects.click('uptimeMLCreateJobBtn');
return retry.tryForTime(30000, async () => {
return retry.tryForTime(60000, async () => {
await testSubjects.existOrFail('uptimeMLJobSuccessfullyCreated');
log.info('Job successfully created');
});
Expand Down

0 comments on commit 295102e

Please sign in to comment.