diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-11-14 07:50:31 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-11-14 07:50:31 +0100 |
| commit | e60703aadca7d423c0fbfb189d5ef439fc1df072 (patch) | |
| tree | 10ae5d3910c171918b7c2c6a8ddf77a6b3700513 /code/app-web/playwright.config.ts | |
| download | storage-e60703aadca7d423c0fbfb189d5ef439fc1df072.tar.xz storage-e60703aadca7d423c0fbfb189d5ef439fc1df072.zip | |
feat: Initial commit
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; |
