Test #16

Merged
maxime.daniels merged 13 commits from test into acc 2026-08-03 22:34:02 +02:00
3 changed files with 467 additions and 217 deletions
Showing only changes of commit 5b0b2e1890 - Show all commits
+7
View File
@@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest';
describe('AEGIS Initial Test', () => {
it('devrait valider que 1 + 1 font 2', () => {
expect(1 + 1).toBe(2);
});
});
+17 -15
View File
@@ -7,35 +7,37 @@
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"@zitadel/react-auth": "^1.2.1",
"clsx": "^2.1.1",
"lucide-react": "^1.27.0",
"lucide-react": "^1.28.0",
"oidc-client-ts": "^3.5.0",
"otpauth": "^9.5.1",
"pocketbase": "^0.27.0",
"pocketbase": "^0.27.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router-dom": "^7.18.2",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.1"
"globals": "^17.9.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}
+443 -202
View File
File diff suppressed because it is too large Load Diff