feat(tests): add frontend automated testing setup with Vitest and jsdom

This commit is contained in:
Will Miao
2025-09-23 23:05:55 +08:00
parent dde7cf71c6
commit ae145de2f2
7 changed files with 2697 additions and 0 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "comfyui-lora-manager-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"jsdom": "^24.0.0",
"vitest": "^1.6.0"
}
}