bgg-ottawa-sell-club/playwright.config.js

13 lines
292 B
JavaScript
Raw Normal View History

2024-01-31 18:22:14 +00:00
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
2024-02-09 17:49:22 +00:00
webServer: {
command: 'npm exec vite preview',
port: 4173,
reuseExistingServer: true,
},
testDir: 'e2e',
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
2024-01-31 18:22:14 +00:00
};
export default config;