improve back and frontend testing

This commit is contained in:
2026-03-29 19:58:06 -07:00
parent 29eee8a42c
commit e9215a64ff
70 changed files with 13441 additions and 134 deletions

View File

@@ -10,7 +10,8 @@
"dev": "vite --force",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"test": "node --test tests/**/*.test.mjs"
"test": "node --test tests/**/*.test.mjs",
"test:coverage": "c8 --reporter=text --reporter=lcov node --test tests/**/*.test.mjs"
},
"dependencies": {
"@xyflow/react": "^12.0.0",
@@ -21,6 +22,7 @@
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.0",
"c8": "^10.1.3",
"vite": "^5.4.0"
}
}