Skip to content

Commit

Permalink
Fix: CircleCI check should fail if unit tests fail (#709)
Browse files Browse the repository at this point in the history
Joining commands in test:coverage script by && instead of ;

Co-authored-by: Will Vedder <[email protected]>
  • Loading branch information
willvedd and willvedd authored Dec 23, 2022
1 parent cc6c0fd commit 8d44582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --exclude 'test/e2e/*' --timeout 5000",
"test:e2e:node-module": "ts-mocha -p tsconfig.json --recursive 'test/e2e/*.test*' --timeout 120000",
"test:e2e:cli": "sh ./test/e2e/e2e-cli.sh",
"test:coverage": "nyc npm run test; nyc report --reporter=lcov",
"test:coverage": "nyc npm run test && nyc report --reporter=lcov",
"build": "rimraf ./lib && npx tsc",
"dev": "npx tsc --watch",
"prepublishOnly": "npm run build",
Expand Down

0 comments on commit 8d44582

Please sign in to comment.