Skip to content

Commit

Permalink
fix: test selector (#97)
Browse files Browse the repository at this point in the history
The old test selector failed if the test folder contained any sub-directories. Don't know why.

The new glob pattern works either way.
  • Loading branch information
ComradeVanti committed Jan 9, 2024
1 parent 7ee77b2 commit 5624edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"node": ">=16"
},
"scripts": {
"test:quick": "cross-env NODE_ENV=test ts-mocha test/**/*.ts",
"test:full": "cross-env NODE_ENV=test ts-mocha test/**/*.ts --type-check",
"test:quick": "cross-env NODE_ENV=test ts-mocha test/**/test-*.ts",
"test:full": "cross-env NODE_ENV=test ts-mocha test/**/test-*.ts --type-check",
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
Expand Down

0 comments on commit 5624edc

Please sign in to comment.