2023-02-21 22:09:10 +00:00
|
|
|
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
|
|
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
|
|
|
webServer: {
|
|
|
|
|
command: 'npm run build && npm run preview',
|
2023-02-22 16:43:52 +00:00
|
|
|
port: 4173,
|
2023-02-21 22:09:10 +00:00
|
|
|
},
|
2023-02-22 16:43:52 +00:00
|
|
|
testDir: 'tests',
|
2023-02-21 22:09:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|