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