7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
webServer: { command: 'yarn build && yarn preview', port: 4173 },
|
|
testDir: 'e2e',
|
|
});
|