diff options
Diffstat (limited to 'code/app-web/playwright.config.ts')
| -rw-r--r-- | code/app-web/playwright.config.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/code/app-web/playwright.config.ts b/code/app-web/playwright.config.ts new file mode 100644 index 0000000..6ad3a7f --- /dev/null +++ b/code/app-web/playwright.config.ts @@ -0,0 +1,10 @@ +import type { PlaywrightTestConfig } from '@playwright/test'; + +const config: PlaywrightTestConfig = { + webServer: { + command: 'npm run build && npm run preview', + port: 4173 + } +}; + +export default config; |
