-
Notifications
You must be signed in to change notification settings - Fork 122
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
[DX-202] Execute all the tests #704
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,5 @@ src/components/base-component-jade/_package | |
|
||
test/fixtures/test.tar.gz | ||
test/fixtures/targz-test | ||
|
||
logintervals.md | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,17 @@ | |
"oc": "./src/oc-cli.js" | ||
}, | ||
"scripts": { | ||
"build": "node tasks/build.js && npm run test", | ||
"changelog": "node tasks/changelog.js", | ||
"build": "node tasks/build.js", | ||
"git-stage": "node tasks/git-stage.js", | ||
"major": "node tasks/version.js --type=\"major\"", | ||
"minor": "node tasks/version.js --type=\"minor\"", | ||
"patch": "node tasks/version.js --type=\"patch\"", | ||
"major": "npm run version-major && npm run test-silent && npm run git-stage", | ||
"minor": "npm run version-minor && npm run test-silent && npm run git-stage", | ||
"patch": "npm run version-patch && npm run test-silent && npm run git-stage", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can also use the native There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bit different as it updates the oc-client component's version too - so that it matches the oc version. |
||
"precommit": "lint-staged", | ||
"start": "npm run build", | ||
"test": "node tasks/mochaTest.js", | ||
"test-silent": "node tasks/mochaTest.js --silent" | ||
"test": "npm run build && node tasks/mochaTest.js", | ||
"test-silent": "npm run build && node tasks/mochaTest.js --silent", | ||
"version-major": "node tasks/version.js --type=\"major\"", | ||
"version-minor": "node tasks/version.js --type=\"minor\"", | ||
"version-patch": "node tasks/version.js --type=\"patch\"" | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add
newline
please,There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done