blob: 6ad3a7faa27928206314d3dfccf814432b4eecf2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
}
};
export default config;
|