Skip to content

Commit

Permalink
[Onboarding] Fix failed Firehose tests (#193733)
Browse files Browse the repository at this point in the history
Closes [193294](#193294)

When the Firehose flow initialized it installs firehose integration and
assets for all supported AWS services in the background that might take
a while. This change increases the wait time until the loader in the UI
is hidden and the test can proceed.

[Successful flaky test runner
job](https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/6998#_)
  • Loading branch information
mykolaharmash authored Sep 24, 2024
1 parent b2d85d5 commit ca61209
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const synthtrace = getService('svlLogsSynthtraceClient');

// Failing: See https://github.com/elastic/kibana/issues/193294
describe.skip('Onboarding Firehose Quickstart Flow', () => {
describe('Onboarding Firehose Quickstart Flow', () => {
before(async () => {
await PageObjects.svlCommonPage.loginAsAdmin(); // Onboarding requires admin role
await PageObjects.common.navigateToUrlWithBrowserHistory(
Expand All @@ -39,7 +38,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

beforeEach(async () => {
await (await testSubjects.find('createCloudFormationOptionAWSCLI')).click();
await (await testSubjects.find('createCloudFormationOptionAWSCLI', 20000)).click();
await testSubjects.existOrFail('observabilityOnboardingFirehoseCreateStackCommand');
});

Expand Down

0 comments on commit ca61209

Please sign in to comment.