Skip to content

Commit

Permalink
yarn fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Mar 18, 2024
1 parent 1f28a7e commit 8339bc5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ sentryTest('should capture TTFB vital.', async ({ getLocalTestPath, page }) => {
sentryTest.skip();
}

page.route('**', async (route) => {
await new Promise((resolve) => setTimeout(resolve, 3000));
route.continue()
page.route('**', async route => {
await new Promise(resolve => setTimeout(resolve, 3000));
route.continue();
});

const url = await getLocalTestPath({ testDir: __dirname });
Expand Down

0 comments on commit 8339bc5

Please sign in to comment.