Skip to content

Commit

Permalink
[RAM] Increase flaky test snooze duration to 10s (#159610)
Browse files Browse the repository at this point in the history
## Summary

Fix #159076

Increases snooze expiry duration in hopes CI will catch it before it
disappears.

Passes flaky test runner:
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2382
  • Loading branch information
Zacqary committed Jun 14, 2023
1 parent 65b8a10 commit e58aced
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -357,7 +357,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
const response = await alertUtils.getSnoozeRequest(createdRule.id).send({
snooze_schedule: {
...SNOOZE_SCHEDULE,
duration: 1000,
duration: 3000,
},
});

Expand All @@ -372,7 +372,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
expect(updatedAlert.snooze_schedule).to.eql([
{
...SNOOZE_SCHEDULE,
duration: 1000,
duration: 3000,
},
]);
});
Expand Down

0 comments on commit e58aced

Please sign in to comment.