13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import type { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
webServer: {
|
|
command: 'pnpm run build && pnpm run preview',
|
|
port: 4173
|
|
},
|
|
testDir: 'tests/integration',
|
|
testMatch: /(.+\.)?(test|spec)\.[jt]s/
|
|
}
|
|
|
|
export default config
|