Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit 3d9eeb2

Browse files
committed
Fix ts error
1 parent 170666b commit 3d9eeb2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/react/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { PlaywrightTestConfig } from '@playwright/test'
22

3-
export default <PlaywrightTestConfig>{
3+
export default {
44
use: {
55
launchOptions: {
66
ignoreDefaultArgs: ['--hide-scrollbars'],
@@ -12,4 +12,4 @@ export default <PlaywrightTestConfig>{
1212
timeout: 120 * 1000,
1313
reuseExistingServer: !process.env.CI,
1414
},
15-
}
15+
} satisfies PlaywrightTestConfig

packages/vue/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { PlaywrightTestConfig } from '@playwright/test'
22

3-
export default <PlaywrightTestConfig>{
3+
export default {
44
use: {
55
launchOptions: {
66
ignoreDefaultArgs: ['--hide-scrollbars'],
@@ -12,4 +12,4 @@ export default <PlaywrightTestConfig>{
1212
timeout: 120 * 1000,
1313
reuseExistingServer: !process.env.CI,
1414
},
15-
}
15+
} satisfies PlaywrightTestConfig

0 commit comments

Comments
 (0)