Skip to content

Commit c29c4ed

Browse files
chore: remove tap (#65)
* chore: remove tap * chore: add c8 to get test coverage
1 parent 2deb484 commit c29c4ed

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"watch": "tsc -w",
1414
"dev": "npm run build && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch\" \"npm:dev:start\"",
1515
"dev:start": "npm run build && fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
16-
"test": "npm run db:seed && tap --jobs=1 test/**/*",
16+
"test": "npm run db:seed && c8 npm run test:run",
17+
"test:run": "glob -c \"tsx --test\" \"./test/**/*.ts\"",
1718
"standalone": "npm run build && node --env-file=.env dist/server.js",
1819
"lint": "eslint --ignore-pattern=dist",
1920
"lint:fix": "npm run lint -- --fix",
@@ -60,10 +61,11 @@
6061
},
6162
"devDependencies": {
6263
"@types/node": "^22.5.5",
64+
"c8": "^10.1.3",
6365
"eslint": "^9.11.0",
6466
"fastify-tsconfig": "^2.0.0",
67+
"glob": "^11.0.0",
6568
"neostandard": "^0.12.0",
66-
"tap": "^21.0.1",
6769
"tsx": "^4.19.1",
6870
"typescript": "~5.7.2"
6971
}

0 commit comments

Comments
 (0)