We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be nice to have a --skip-tests flag in the ng new / init command.
--skip-tests
ng new / init
I know it is a very bad practice to omit writing unit and e2e tests but it would be a useful flag for barbarians like me. 💃
I wanted to know your opinion about it before making a PR.
The text was updated successfully, but these errors were encountered:
If ng new myApp --skip-tests is run, should the angular-cli.json be updated to change the following:
ng new myApp --skip-tests
angular-cli.json
"spec": { "class": false, "component": true, // change to false "directive": true, // change to false "module": false, "pipe": true, // change to false "service": true // change to false }
That way the --skip-tests flag will affect the whole project, not just the ng new/init command.
ng new/init
Sorry, something went wrong.
Closing as it has been implemented.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
It would be nice to have a
--skip-tests
flag in theng new / init
command.I know it is a very bad practice to omit writing unit and e2e tests but it would be a useful flag for barbarians like me. 💃
I wanted to know your opinion about it before making a PR.
The text was updated successfully, but these errors were encountered: