From b0f7cd9394f4cf7916fd331a5b592aef4113dd5a Mon Sep 17 00:00:00 2001 From: Lukas Bockstaller Date: Mon, 4 Mar 2024 22:34:46 +0100 Subject: [PATCH] chore: bend fixture types to please ts --- tests/playwright-test/playwright-test-fixtures.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playwright-test/playwright-test-fixtures.ts b/tests/playwright-test/playwright-test-fixtures.ts index 825068f51f..7850a52f07 100644 --- a/tests/playwright-test/playwright-test-fixtures.ts +++ b/tests/playwright-test/playwright-test-fixtures.ts @@ -254,8 +254,8 @@ type Fixtures = { }; export const test = base - .extend(commonFixtures) - .extend(serverFixtures) + .extend(commonFixtures as any) + .extend(serverFixtures as any) .extend({ writeFiles: async ({}, use, testInfo) => { await use(files => writeFiles(testInfo, files, false)); @@ -455,4 +455,4 @@ export default defineConfig({ }, projects: [{name: 'default'}], }); -`; \ No newline at end of file +`;