[MKI][FTR] Fixup reporting (#214392)

# Summary

Increase timeout.

Resolves: https://github.com/elastic/kibana/issues/214391
This commit is contained in:
Tre 2025-03-13 16:05:11 +00:00 committed by GitHub
parent c886fb0f73
commit 1a9ad39aec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.discover.clickNewSearchButton();
await PageObjects.discover.saveSearch('my search - no data - expectReportCanBeCreated');
const res = await getReport();
const res = await getReport({ timeout: 180_000 }); // 3 minutes
expect(res.text).to.be(`\n`);
});