-
Notifications
You must be signed in to change notification settings - Fork 12k
chore(test): add --single-run option #2841
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
Conversation
@@ -2,5 +2,5 @@ import {ng} from '../../utils/process'; | |||
|
|||
|
|||
export default function() { | |||
return ng('test', '--watch=false'); | |||
return ng('test', '--single-run'); |
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.
Could we do both here? I want to make sure we don't break --watch=false
.
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
d441202
to
68cb6a9
Compare
Doing `ng test --single-run` always worked but outputted a ember-cli warning about a missing option. This PR allows using the option without warning. It's overall better than `--watch=false` because it better aligns with Karma's options. `--watch=false` still works though.
68cb6a9
to
70b6038
Compare
LGTM. |
Doing `ng test --single-run` always worked but outputted a ember-cli warning about a missing option. This PR allows using the option without warning. It's overall better than `--watch=false` because it better aligns with Karma's options. `--watch=false` still works though.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Doing
ng test --single-run
always worked but outputted a ember-cli warning about a missing option.This PR allows using the option without warning. It's overall better than
--watch=false
because it better aligns with Karma's options.--watch=false
still works though.