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