Skip to content

Commit

Permalink
[Onboarding] Increase wait time for Firehose flow initialization in t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
mykolaharmash committed Sep 24, 2024
1 parent caad894 commit f0b88d5
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 f0b88d5

Please sign in to comment.