Skip to content
This repository has been archived by the owner on Dec 13, 2019. It is now read-only.

[node] pass --verbose to jest test #1086

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest --setupFiles dotenv-extended/config --runInBand --bail --forceExit",
"test": "jest --setupFiles dotenv-extended/config --runInBand --bail --forceExit --verbose",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically these options get set in jest.config.json

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

including --runInBand, etc?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--runInBand is an exception jestjs/jest#3215

"test:coverage": "jest --runInBand --detectOpenHandles --bail --coverage",
"lint:fix": "tslint -c tslint.json -p . --fix",
"lint": "tslint -c tslint.json -p ."
Expand Down