We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 806c79c commit cbc61fdCopy full SHA for cbc61fd
vscode-trace-extension/src/test/extension-test.spec.ts
@@ -1,6 +1,9 @@
1
import { test, expect } from '@playwright/test';
2
3
-test.beforeEach(async ({ page }) => {
+const timeout = 10000;
4
+
5
+test.beforeEach(async ({ page }, testInfo) => {
6
+ testInfo.timeout = timeout;
7
await page.goto('http://localhost:3000');
8
await page.getByRole('tab', { name: 'Welcome, preview' }).getByRole('button', { name: /Close/ }).click();
9
await page.getByRole('button', { name: 'Never' }).click();
0 commit comments