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

13 lines
292 B
JavaScript

/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
webServer: {
command: 'npm exec vite preview',
port: 4173,
reuseExistingServer: true,
},
testDir: 'e2e',
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
};
export default config;