diff --git a/.gitignore b/.gitignore index 655e1d8..76c2d6e 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,7 @@ generatedAssets node_modules package-lock.json yarn.lock -bun.lockb \ No newline at end of file +bun.lockb + +# Test coverage +coverage \ No newline at end of file diff --git a/package.json b/package.json index 8bd011e..b74e895 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "lint:fix": "npm run lint -- --fix", "start": "node dist/svr.js", "test": "jest", + "test:coverage": "jest --coverage", "test:middleware": "jest tests/middleware", "test:utils": "jest tests/utils" },