Skip to content

Commit

Permalink
fix(cicd): ensure lack of acceptance tests doesnt prevent deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
uladkasach committed Dec 23, 2022
1 parent 0b03ec5 commit d856bd4
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 @@ -58,7 +58,7 @@
"test:unit": "CI=true jest -c ./jest.unit.config.ts --forceExit --coverage --verbose --passWithNoTests",
"test:integration": "CI=true jest -c ./jest.integration.config.ts --forceExit --coverage --verbose --passWithNoTests",
"prepublish": "npm run build",
"test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand",
"test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests",
"test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
"test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand",
"prepush": "npm run test && npm run build",
Expand Down

0 comments on commit d856bd4

Please sign in to comment.