This commit is contained in:
Ollie Taylor
2023-02-23 13:28:04 +00:00
parent 1336175d8a
commit 8260a2078f
5 changed files with 10 additions and 10 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;