Skip to content

Commit addb4f5

Browse files
authored
fix: npm script check:test failure on ubuntu
A bug was introduced with the recent npm script changes on Ubuntu This expands a glob used that isn't supported by the default shell NODE-2542
1 parent ccccbc8 commit addb4f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
"build:types": "tsc",
7373
"check:atlas": "node test/tools/atlas_connectivity_tests.js",
7474
"check:bench": "node test/benchmarks/driverBench",
75-
"check:coverage": "nyc mocha --timeout 60000 --recursive test/{functional,unit}",
75+
"check:coverage": "nyc mocha --timeout 60000 --recursive test/functional test/unit",
7676
"check:lint": "eslint index.js lib test",
77-
"check:test": "mocha --recursive test/{functional,unit}",
77+
"check:test": "mocha --recursive test/functional test/unit",
7878
"check:types": "tsc -p tsconfig.check.json",
7979
"release": "standard-version -i HISTORY.md",
8080
"test": "npm run check:lint && npm run check:test"

0 commit comments

Comments
 (0)