-
Notifications
You must be signed in to change notification settings - Fork 12k
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
ng new my-project --skip-tests shouldn't generate karma/protractor files #9160
Comments
Completely agree with this. In my mind, Skipping tests removes anything to do with testing. Karma, E2E, spec files and configs (inside angular-cli.json), etc... On the other hand, I also find it ridiculous the only option is to use |
Tested on release and beta versions, still having this problem. |
Tested with CLI 6.0.3. Testing setup is still being generated when using
Would be really nice to have this feature covered in the next releases. |
Angular CLI 6.0.7 still the same. # ng new test-app --minimal --skip-tests --dry-run
CREATE test-app/README.md (1024 bytes)
CREATE test-app/angular.json (4100 bytes)
CREATE test-app/package.json (1312 bytes)
CREATE test-app/tsconfig.json (384 bytes)
CREATE test-app/tslint.json (2805 bytes)
CREATE test-app/.editorconfig (245 bytes)
CREATE test-app/.gitignore (503 bytes)
CREATE test-app/src/environments/environment.prod.ts (51 bytes)
CREATE test-app/src/environments/environment.ts (631 bytes)
CREATE test-app/src/favicon.ico (5430 bytes)
CREATE test-app/src/index.html (294 bytes)
CREATE test-app/src/main.ts (370 bytes)
CREATE test-app/src/polyfills.ts (3194 bytes)
CREATE test-app/src/test.ts (642 bytes)
CREATE test-app/src/assets/.gitkeep (0 bytes)
CREATE test-app/src/styles.css (80 bytes)
CREATE test-app/src/browserslist (375 bytes)
CREATE test-app/src/karma.conf.js (964 bytes)
CREATE test-app/src/tsconfig.app.json (194 bytes)
CREATE test-app/src/tsconfig.spec.json (282 bytes)
CREATE test-app/src/tslint.json (314 bytes)
CREATE test-app/src/app/app.module.ts (314 bytes)
CREATE test-app/src/app/app.component.css (0 bytes)
CREATE test-app/src/app/app.component.html (1141 bytes)
CREATE test-app/src/app/app.component.ts (207 bytes)
CREATE test-app/e2e/protractor.conf.js (752 bytes)
CREATE test-app/e2e/src/app.e2e-spec.ts (304 bytes)
CREATE test-app/e2e/src/app.po.ts (208 bytes)
CREATE test-app/e2e/tsconfig.e2e.json (213 bytes)
NOTE: Run with "dry run" no changes were made. |
Tested with @angular/cli 6.0.8:
|
Still an issue in 6.2.2 |
Just a 'what if' -- for library development, I generally generate a new app and a single library - the app acting as the 'demo' for the library. Generating without tests (including e2e) makes sense on the top level, but I do unit tests on the library. Figured I'd share - maybe I should just start testing my demos :) |
In CLI |
It removes the test files, but also removes linting so it isn't really the right solution. The issue still remains that |
|
Also, |
ng new my-project-no-test --minimal=true --routing=true --skip-tests=true |
See my comment above. The issue is the
To make things more flexible, there should probably be a |
Roger! |
You have to Use --skipTests |
Still a problem in 10.2 |
This is expected as per description More info: https://angular.io/cli/new |
The problem with using |
For anyone wanting to create an Angular project without test packages, files and configurations, I'll leave my conclusions:
|
why in angular.io is written --skip-tests and they didnt fix to --skipTests. they dont care? |
@Dewberrycat, the reason why is that camel cased arguments such as |
ok, --skip-tests also still doesnt work, what is wrong with angular team? do they remember where angular.io is? why they dont care about people, should we all be Nostradamuses to guess what to do? |
The reason is not the issue. Out of date documentation is the issue. |
Can you elaborate on what’s the not correct in the docs about the skip test option? In https://angular.io/cli/new the description of
May I also remind you to keep the conversation constructive per the code of conduct. Thanks @ErroneousFatality / @Dewberrycat this is an OSS project, feel free to create a PR to improve the docs if you find some parts are out of dated or incorrect. Such contributions would be greatly appreciated. |
Update 2021 If you want to have the minimal mode and not have the inlineTemplate, I have done the following:
But in the angular.json file I have looked for the inlineTemplate file and I have set it to false (it can be removed since it is false by default).
However I think it is a mistake to set --inline-style = false and that it does not work the first time. |
How can this still be an issue 6 version later ? |
It still here |
Had some discussion about this today and we all agreed that With the work going on with Web Test Runner and Jest, we're planning to add something like One challenge with not generating tests is that it isn't clear how to add tests later if a user changes their mind for a project. We should look into some kind of There was a recent PR for this in #25901. We're likely a little too late to get this into version 17, but it's definitely something we can consider for v18. |
@dgp1130 one year later ... is it too late to consider for version 20? |
you have to use |
The
--skip-tests
flag forng new
didn't quite match my expectations as a developer.Versions
Repro steps
ng new my-project --skip-tests
Observed behavior
Desired behavior
The text was updated successfully, but these errors were encountered: