[SLO] increase retry for time on api integration test (#177871)

## Summary

Resolves https://github.com/elastic/kibana/issues/176763

Increase retry time to wait for transforms to run and SLO computation.
This commit is contained in:
Dominique Clarke 2024-03-04 08:49:08 -05:00 committed by GitHub
parent b635674a67
commit 0a2730bd54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -304,7 +304,7 @@ export default function ({ getService }: FtrProviderContext) {
await createSLO();
await createSLO({ name: 'test int' });
await retry.tryForTime(300 * 1000, async () => {
await retry.tryForTime(360 * 1000, async () => {
const response = await supertestAPI
.get(`/api/observability/slos`)
.set('kbn-xsrf', 'true')