Skip to content

Commit

Permalink
Code Coverage Removal + TSX Explorations
Browse files Browse the repository at this point in the history
Stil trying to see if I can move over to the built-in Node test runner instead of Jest, it didn't work the first time I tried moving to it. It doesn't have code coverage support, at least that I'm aware of, so I'm removing it in the Jest one first to help prevent accidental difference concerns.

I started moving everything to TypeScript, but I really don't like how complex Jest is to use with either TS or plain ESM, so I want to use `tsx` with the Node test runner instead, that's a very nice and simple setup, I really like it.

jestjs/jest#13143
  • Loading branch information
Offroaders123 committed Jun 17, 2024
1 parent 337a81b commit 2af7722
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.DS_Store
.github
node_modules
coverage
dist
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage"
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
Expand Down

0 comments on commit 2af7722

Please sign in to comment.