error improvements

This commit is contained in:
Lara 2024-11-03 11:31:53 +02:00
parent a4c4d48027
commit cf28aed45a
Signed by: laratheprotogen
GPG key ID: 5C0296EB3165F98B
2 changed files with 28 additions and 7 deletions

View file

@ -1,10 +1,10 @@
import { defineConfig } from "@playwright/test";
import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: "npm run build && npm run preview",
port: 4173,
},
webServer: {
command: 'pnpm run build && pnpm run preview',
port: 4173
},
testDir: "e2e",
testDir: 'e2e'
});