From e60703aadca7d423c0fbfb189d5ef439fc1df072 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 14 Nov 2022 13:50:31 +0700 Subject: feat: Initial commit --- code/app-web/playwright.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/app-web/playwright.config.ts (limited to 'code/app-web/playwright.config.ts') 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; -- cgit v1.3