From 23ab0a24ba82004fa449491b4e08698a1de9e6a0 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sat, 11 Feb 2023 21:04:43 +0100 Subject: feat: Initial commit --- playwright.config.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 playwright.config.ts (limited to 'playwright.config.ts') 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; -- cgit v1.3