mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
[RAM] Increase flaky test snooze duration to 10s (#159610)
## 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
This commit is contained in:
parent
65b8a10027
commit
e58aced30d
1 changed files with 2 additions and 2 deletions
|
@ -357,7 +357,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
|
||||||
const response = await alertUtils.getSnoozeRequest(createdRule.id).send({
|
const response = await alertUtils.getSnoozeRequest(createdRule.id).send({
|
||||||
snooze_schedule: {
|
snooze_schedule: {
|
||||||
...SNOOZE_SCHEDULE,
|
...SNOOZE_SCHEDULE,
|
||||||
duration: 1000,
|
duration: 3000,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -372,7 +372,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
|
||||||
expect(updatedAlert.snooze_schedule).to.eql([
|
expect(updatedAlert.snooze_schedule).to.eql([
|
||||||
{
|
{
|
||||||
...SNOOZE_SCHEDULE,
|
...SNOOZE_SCHEDULE,
|
||||||
duration: 1000,
|
duration: 3000,
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue