Skip to content

Commit 64f4e92

Browse files
committed
Fix Playwright worker fixture generic typing
1 parent 6426808 commit 64f4e92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/fixtures/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type WorkerApp = {
1818
baseUrl: string;
1919
};
2020

21-
export const test = base.extend<Record<string, never>, { workerApp: WorkerApp }>({
21+
export const test = base.extend<Record<never, never>, { workerApp: WorkerApp }>({
2222
workerApp: [
2323
async ({}, useWorkerApp, workerInfo) => {
2424
const runtimeState = await readRuntimeState();

0 commit comments

Comments
 (0)