fix: restore permissions export compatibility and add regressions

This commit is contained in:
2026-02-27 14:54:26 -06:00
parent 5a6970a4c5
commit cb8c6b3958
8 changed files with 617 additions and 10 deletions
+6 -6
View File
@@ -1,9 +1,9 @@
import { defineConfig } from '@playwright/test';
import { defineConfig } from "@playwright/test";
export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'e2e'
webServer: {
command: "PORT=4173 ORIGIN=http://localhost:4173 node build/index.js",
port: 4173,
},
testDir: "e2e",
});