mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 13:12:12 -03:00
- Update package.json test script to run both JS and Vue tests - Simplify LoraCyclerLM output by removing redundant lora name fallback - Extend Vitest config to include TypeScript test files - Add Vue testing dependencies and setup for component testing - Implement comprehensive test suite for BatchQueueSimulator component - Add test setup file with global mocks for ComfyUI modules
18 lines
423 B
JSON
18 lines
423 B
JSON
{
|
|
"name": "comfyui-lora-manager-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "npm run test:js && npm run test:vue",
|
|
"test:js": "vitest run",
|
|
"test:vue": "cd vue-widgets && npx vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "node scripts/run_frontend_coverage.js"
|
|
},
|
|
"devDependencies": {
|
|
"jsdom": "^24.0.0",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|