Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Uptime] ml test - increase wait #193310

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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