From a7cf03c192470cbab13edeb1aec99e0c66dede10 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 1 May 2022 00:56:06 +0200 Subject: Update / use typescript --- playwright.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 playwright.config.js (limited to 'playwright.config.js') diff --git a/playwright.config.js b/playwright.config.js new file mode 100644 index 0000000..448008a --- /dev/null +++ b/playwright.config.js @@ -0,0 +1,9 @@ +/** @type {import('@playwright/test').PlaywrightTestConfig} */ +const config = { + webServer: { + command: 'npm run build && npm run preview', + port: 3000 + } +}; + +export default config; -- cgit