Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ps): add code coverage reports #2278

Merged
merged 2 commits into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions packages/ps/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
],
"rules": {
"unicorn/no-abusive-eslint-disable": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"camelcase": "off"
}
}
1 change: 1 addition & 0 deletions packages/ps/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/package-lock.json
/tmp
package-lock.json
/.nyc_output
3 changes: 2 additions & 1 deletion packages/ps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"globby": "^9.0.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^15.1.0",
"oclif": "3.6.4",
"ts-node": "10.9.1",
"tslib": "^1.9.3",
Expand Down Expand Up @@ -64,7 +65,7 @@
"postpublish": "yarn run clean",
"prepack": "yarn run build && oclif manifest",
"preversion": "yarn run clean",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}
Loading