This commit is contained in:
Ollie Taylor
2023-02-22 16:43:52 +00:00
parent 3553143f03
commit 4137cda798
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
port: 4173,
},
testDir: 'tests'
testDir: 'tests',
};
export default config;