fix: Add jest-environment-jsdom for Jest 28 compatibility
Run Tests / test (pull_request) Failing after 35s

This commit is contained in:
User
2026-03-22 11:22:50 +00:00
parent 521df99323
commit 6b437d41cb
2 changed files with 928 additions and 3 deletions
+920 -1
View File
File diff suppressed because it is too large Load Diff
+8 -2
View File
@@ -9,7 +9,12 @@
"test:debug": "playwright test --debug", "test:debug": "playwright test --debug",
"test:all": "npm test && npm run test:e2e" "test:all": "npm test && npm run test:e2e"
}, },
"keywords": ["3d", "flight", "simulator", "threejs"], "keywords": [
"3d",
"flight",
"simulator",
"threejs"
],
"author": "RetroWeb Games", "author": "RetroWeb Games",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
@@ -17,6 +22,7 @@
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.28.0", "@playwright/test": "^1.28.0",
"jest": "^29.0.0" "jest": "^29.0.0",
"jest-environment-jsdom": "^30.3.0"
} }
} }