website/playwright.config.js

11 lines
203 B
JavaScript
Raw Permalink Normal View History

2023-04-05 09:03:19 +00:00
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'tests'
};
export default config;