get rid of mockImplementation(() => promise) - causing memory leaks
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 37s

This commit is contained in:
2025-11-27 13:03:35 -08:00
parent 78fa36f7a0
commit 3d891a9fea

View File

@@ -10,8 +10,8 @@
"preview": "vite preview",
"test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
"test:coverage": "npm run clean && npm run test:unit -- --coverage && npm run test:integration -- --coverage",
"test:unit": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --threads=false -c vite.config.ts",
"test:integration": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --threads=false -c vitest.config.integration.ts",
"test:unit": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --no-threads -c vite.config.ts",
"test:integration": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --no-threads -c vitest.config.integration.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf coverage .coverage",
"start:dev": "tsx --env-file .env.test server.ts",