boredgame/playwright.config.ts

11 lines
228 B
TypeScript
Raw Normal View History

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'e2e',
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
});