Skip to content

Commit 8339bc5

Browse files
committed
yarn fix
1 parent 1f28a7e commit 8339bc5

File tree

1 file changed

+3
-3
lines changed
  • dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-ttfb

1 file changed

+3
-3
lines changed

dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-ttfb/test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ sentryTest('should capture TTFB vital.', async ({ getLocalTestPath, page }) => {
99
sentryTest.skip();
1010
}
1111

12-
page.route('**', async (route) => {
13-
await new Promise((resolve) => setTimeout(resolve, 3000));
14-
route.continue()
12+
page.route('**', async route => {
13+
await new Promise(resolve => setTimeout(resolve, 3000));
14+
route.continue();
1515
});
1616

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

0 commit comments

Comments
 (0)