Skip to content

Commit

Permalink
fix(helpers): Add await for page.goto on fixture code (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
chelseapinka authored Jun 27, 2023
1 parent c3d0fbc commit 357019b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/internal-playwright-helpers/src/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type AuthFixture = {
export const test = base.extend<AuthFixture>({
// Override the page fixture to start the app automatically
page: async ({ page }, use) => {
page.goto("/");
await page.goto("/");
use(page);
},
auth: async ({ page }, use) => {
Expand Down

0 comments on commit 357019b

Please sign in to comment.