Skip to content

Commit

Permalink
test(ts-node): Disable tsconfig.json loading (#350)
Browse files Browse the repository at this point in the history
Fixes #348.
  • Loading branch information
make-github-pseudonymous-again committed Jan 17, 2022
1 parent 09b0e3f commit 6ca0e6a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
28 changes: 28 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"url": "git@github.com:bcoe/c8.git"
},
"scripts": {
"test": "node ./bin/c8.js mocha --timeout=8000 ./test/*.js",
"coverage": "node ./bin/c8.js --check-coverage mocha --timeout=8000 ./test/*.js",
"test": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js mocha --timeout=8000 ./test/*.js",
"coverage": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js --check-coverage mocha --timeout=8000 ./test/*.js",
"test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"fix": "standard --fix",
"posttest": "standard"
Expand Down Expand Up @@ -50,6 +50,7 @@
"@types/node": "^16.9.1",
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"cross-env": "^7.0.3",
"mocha": "^9.0.0",
"standard": "^16.0.3",
"ts-node": "^10.0.0",
Expand Down

0 comments on commit 6ca0e6a

Please sign in to comment.