Merge branch 'feature/shl-01-ui-shell-design-system-zentral' into feature/aud-04-audit-log-ansicht

This commit is contained in:
sysops
2026-08-28 21:56:20 +02:00
3 changed files with 11 additions and 0 deletions
+2
View File
@@ -14,9 +14,11 @@
"react-dom": "^18.3.1" "react-dom": "^18.3.1"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0", "@testing-library/react": "^16.0.0",
"@types/react": "18.3.3", "@types/react": "18.3.3",
"@types/react-dom": "18.3.0", "@types/react-dom": "18.3.0",
"jsdom": "^24.1.1",
"typescript": "5.5.3", "typescript": "5.5.3",
"vitest": "^2.0.0" "vitest": "^2.0.0"
} }
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
setupFiles: ["./vitest.setup.ts"],
},
});
+1
View File
@@ -0,0 +1 @@
import "@testing-library/jest-dom/vitest";