Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: migrate from tap to node test and c8 #203

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .taprc

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"valkey": "docker run -p 6379:6379 --rm valkey/valkey:7.2",
"test": "npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "tap",
"unit:report": "tap --cov --coverage-report=html --coverage-report=cobertura",
"unit:verbose": "tap -Rspec"
"unit": "node --test",
nimesh0505 marked this conversation as resolved.
Show resolved Hide resolved
"unit:report": "c8 node --test",
"unit:verbose": "node --test --test-reporter=spec"
},
"repository": {
"type": "git",
Expand All @@ -37,10 +37,10 @@
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"c8": "^10.1.2",
"fastify": "^5.0.0-alpha.4",
"proxyquire": "^2.1.3",
"standard": "^17.1.0",
"tap": "^18.7.1",
"tsd": "^0.31.0",
"why-is-node-running": "^2.2.2"
},
Expand Down
Loading