ci: pin node for jsdom tests
All checks were successful
Deploy to Frontend Servers / deploy (push) Successful in 1m28s

This commit is contained in:
TerryM
2026-05-16 21:12:48 +08:00
parent 1c1ef4801b
commit 5b67279734
5 changed files with 610 additions and 87 deletions

View File

@@ -4,7 +4,12 @@ import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
test: {
environment: "happy-dom",
environment: "jsdom",
environmentOptions: {
jsdom: {
url: "http://localhost/",
},
},
setupFiles: "./src/test/setup.ts",
css: false,
},