mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
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/,
|
|
});
|