more unit testing
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 1m15s

This commit is contained in:
2025-11-22 14:17:56 -08:00
parent 17ded81631
commit 7bb97f299e
5 changed files with 1288 additions and 16 deletions

View File

@@ -8,8 +8,10 @@
"start": "tsx --env-file .env server.ts",
"build": "vite build",
"preview": "vite preview",
"clean": "rimraf coverage .coverage",
"test:coverage": "npm run clean && npm run test && npm run test:integration && nyc merge .coverage coverage.json && nyc report --reporter=html --reporter=text",
"test": "vitest run --coverage",
"test:integration": "vitest run -c vitest.config.integration.ts",
"test:integration": "vitest run --coverage -c vitest.config.integration.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"seed": "ts-node-dev scripts/seed.ts",
"start:server": "tsx --env-file .env.test server.ts",
@@ -65,6 +67,7 @@
"bcrypt": "^6.0.0",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"nyc": "^17.1.0",
"eslint": "9.39.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",