deps(archief-assistent): add playwright for E2E testing
- Add @playwright/test as dev dependency - Alphabetize dependencies list
This commit is contained in:
parent
f7bd3e9edc
commit
97f85e0050
1 changed files with 9 additions and 4 deletions
|
|
@ -9,7 +9,11 @@
|
|||
"lint": "eslint .",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest",
|
||||
"test:run": "vitest run"
|
||||
"test:run": "vitest run",
|
||||
"test:e2e": "playwright test",
|
||||
"test:e2e:ui": "playwright test --ui",
|
||||
"test:e2e:headed": "playwright test --headed",
|
||||
"test:e2e:report": "playwright show-report"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
|
|
@ -21,18 +25,19 @@
|
|||
"@mui/icons-material": "^7.3.6",
|
||||
"@mui/material": "^7.3.5",
|
||||
"@tanstack/react-query": "^5.90.10",
|
||||
"d3": "^7.9.0",
|
||||
"js-yaml": "^4.1.1",
|
||||
"lucide-react": "^0.511.0",
|
||||
"maplibre-gl": "^5.14.0",
|
||||
"react": "^19.2.0",
|
||||
"react-dom": "^19.2.0",
|
||||
"react-markdown": "^10.1.0",
|
||||
"react-router-dom": "^7.9.6",
|
||||
"rehype-raw": "^7.0.0",
|
||||
"remark-gfm": "^4.0.1",
|
||||
"lucide-react": "^0.511.0",
|
||||
"d3": "^7.9.0"
|
||||
"remark-gfm": "^4.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.56.1",
|
||||
"@types/d3": "^7.4.3",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"@types/node": "^24.10.1",
|
||||
|
|
|
|||
Loading…
Reference in a new issue