[performance/journeys] fix journeys (#144507)

This commit is contained in:
Dzmitry Lemechko 2022-11-03 12:49:16 +01:00 committed by GitHub
parent 46fd8e373b
commit 48ea0297d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ export const journey = new Journey({
await page.waitForSelector('#dashboardListingHeading');
})
.step('Go to Ecommerce Dashboard with Saved Search only', async ({ page }) => {
.step('Go to Ecommerce Dashboard with Saved Search only', async ({ page, log }) => {
await page.click(subj('dashboardListingTitleLink-[eCommerce]-Saved-Search-Dashboard'));
await waitForVisualizations(page, 1);
await waitForVisualizations(page, log, 1);
});

View file

@ -19,7 +19,7 @@ export const journey = new Journey({
await page.waitForSelector('#dashboardListingHeading');
})
.step('Go to Ecommerce Dashboard with TSVB Gauge only', async ({ page }) => {
.step('Go to Ecommerce Dashboard with TSVB Gauge only', async ({ page, log }) => {
await page.click(subj('dashboardListingTitleLink-[eCommerce]-TSVB-Gauge-Only-Dashboard'));
await waitForVisualizations(page, 1);
await waitForVisualizations(page, log, 1);
});