diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-02-11 21:04:43 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-02-11 21:04:43 +0100 |
| commit | 23ab0a24ba82004fa449491b4e08698a1de9e6a0 (patch) | |
| tree | d701120d9a77f67153c93149ec7871bfd571bbfb /playwright.config.ts | |
| download | auroraklinikken.no-23ab0a24ba82004fa449491b4e08698a1de9e6a0.tar.xz auroraklinikken.no-23ab0a24ba82004fa449491b4e08698a1de9e6a0.zip | |
feat: Initial commit
Diffstat (limited to 'playwright.config.ts')
| -rw-r--r-- | playwright.config.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/playwright.config.ts b/playwright.config.ts new file mode 100644 index 0000000..80731be --- /dev/null +++ b/playwright.config.ts @@ -0,0 +1,11 @@ +import type { PlaywrightTestConfig } from '@playwright/test'; + +const config: PlaywrightTestConfig = { + webServer: { + command: 'npm run build && npm run preview', + port: 4173 + }, + testDir: 'tests' +}; + +export default config; |
