-
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
Bug: Code Coverage Report #5526
Comments
There are two related issues both in Istanbul and TypeScript: The latest suggestion from both threads is to run tests with coverage targeting ES6 instead of ES5. Unfortunately from what I can tell, the Angular CLI doesn't use At the moment, there's nothing to do, adding |
If there's something we can do to help, we'd like to. |
@hotforfeature you can actually change the "target" to es6 in the src/tsconfig.spec.json with the version of angular cli that you are using. However, if you are running tests on phantomjs it will fail due to the "const" keyword/ES6/ES2015 not being supported yet. There is a beta version of phantomjs that they have released that you could try which should have support for it, but may have other issues. |
tsconfig.spec file has es6 as a target, running on CLI-1.0.0 still get all the missing branches from all the constructors, maybe I'm missing something? |
I have the same problem as @sandman21dan. Any idea ? |
Any solutions? It is really frustrating :/ |
Since it is being 2 months, just want to know the progress. |
Changing |
Same problem here. |
Anyone got anything on this issue resolution? I found an ugly workaround. Set the constructor params to |
Changing to es6 doesn't work here as well. Is there a feasible solution in the works? |
Reproduced this issue by simply adding |
I have the same issue :( ... Why is it blocked? Can we expect a fix in the near future? |
WorkaroundAs a workaround I found the special comment If you place after your class, the constructor gets ignored. Has to be exactly after the brace, do not break lines. Example
Generates
Which ignores this line Note: If you have static members in your class add the comment after the last one, example:
To ignore super
If you have generics and/or With those hacks I got 100% coverage. UPDATE: Well, yes, this is pretty ugly and might not work in all cases. |
I don't believe that jest is covered by the cli. In which case this doesn't
belong here but on stack overflow.
…On Sat, Mar 3, 2018, 8:33 PM Ahn ***@***.***> wrote:
@otroboe <https://github.com/otroboe> Angular 5 fixed the issue but only
when testing with karma + jasmine, with Jest I also experience the same
issue. @filipesilva <https://github.com/filipesilva> can you tell us
exactly what was the fix in Angular 5 ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#5526 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMPLtUKPtuq-KCUr64POpqXwqLIUEJjbks5ta0R1gaJpZM4Mi9tY>
.
|
+1 |
It seems most of the issues are solved nevertheless we are still experiencing same issue like @brunolm mentioned |
We are experiencing this in our project with constructors and decorators. Running angular 5.2.8, angular-cli 1.7.3, jasmine 3.1.0 running with karma. |
I resolve the problem by targetting es6 in tsconfig.spec.json {
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"baseUrl": "./",
"module": "commonjs",
"target": "es6",
"types": ["jasmine", "node"]
},
"files": ["test.ts"],
"include": ["**/*.spec.ts", "**/*.d.ts"]
} |
Just make sure that you have sourcemaps turned on for your tests and coverage will work fine. |
@macbem Not the case for me, I experience this problem with and without sm flag. |
Thanks for the suggestions @macbem and @rousseaufiliong. I previously tried those suggestions along with the other suggestions in this thread like adding |
Is a fix on the way? |
I experience this problem with having source maps turned off for testing. |
@filipesilva with version 1.7.4 the problem continues :( |
We're also still seeing the same problem, Angular 5.2.6, Jest 22.4.3 and Jest Angular Preset 5.2.2. For whatever reason, it's not all the time, but there are issues where some of the params in a constructor will be uncovered. It doesn't seem to make a lot of sense, because it's not consistent. |
Also seeing this behaviour as described by @mcblum |
Same issues with Angular 5.2.11, Jest 23.1.0 and jest-preset-angular 5.2.2. All the istanbul packages pulled in (inspected via package-lock.json) also appear to be the latest.
I even tried upgrading to TypeScript 2.9.2 but no luck. |
We fixed this by modifying The flag should be added under the following path:
|
Angular CLI team reported that newer CLI versions will correct this automatically: |
Angular CLI team lies. I'm running the latest angular/jest and still seeing this problem. NONE of the above "solutions" work. I've tried /* istanbul ignore next */, sourcemaps (both on and off) setting the target to es6, even adding the deprecated "mapcoverage" setting. Nothing works. Problem still exists without so much as a workaround. This is not a "closed" bug. |
Before calling a team as liars consider for a moment that you might be missing something or maybe you have encountered an edge case unknown to the community. If you provide a minimum reproducible example (created in stackblitz for instance) it would be more helpful to get your problem sorted out. Also this issue was closed ages ago - a lot has happend to the CLI since. A regression might have happened in the meantime which, if confirmed, is a reason to reopen it. |
@Javin007 bro... come on. These are some of the most capable people working on software today, so the chances that they are lying to cover up a bug that, at its core, leads to an incorrect coverage report number are almost 0. I'm using the latest CLI and Jest and ignore next works just fine. I would guess there is something else wrong with your setup. Please consider the tone you take when commenting on projects which are free for you to use. No one owes you a fix, we're all in this together, and people are doing their best. |
I'm sorry if I come off as a bit irritated, but this is a very easily duplicated bug: 1.) Create new "hello world" project. I JUST did it again to verify. It literally happens every time. On multiple versions of angular, and on every environment. And I've spent the last 48 hours searching for a solution, and have tried every single "fix" found on google to no avail. And this has been a problem for quite some time. I'm not even saying it's specifically the Angular team's fault. It could very likely be a problem with Jest. However, claiming that "it's fixed" when it's not, and it's so easily duplicated is not helpful. Especially when I see numerous posts on numerous different sites (and even in this thread) claiming so without doing the very basic test outlined above. This original post was from March of 2017. It's now February of 2019, and this thread is a history of people continuing to have the exact same problem without a solution at any time. So this isn't just some problem that "cropped up again." And yes, I'm irritated at spending two days of seeing people saying "it's fixed" when it simply isn't, and none of the MANY, MANY proffered solutions (everything from creating an entirely new project, to reinstalling angular) are anything but a waste of time. This kind of hand-waving away of the problem doesn't get it solved (obviously, since we're now on year two of the same issue). If you actually have a solution that fixes the problem, then I and the many other people suffering from this problem would very much love to hear it. If you're not having this issue, then what is it that you're doing differently from the above steps? We would very much like to know. |
@Javin007 since even the steps you list above could result in a different version being installed on my machine than yours, could you please put the exact configuration in a StackBlitz so one of us can grab the code and see what's up? When you say "install jest" there are 1,000 different options, stable vs. alpha version of Once again, I'm currently, as I type, working on a large project using Angular CLI + Jest + Istanbul and all of my ignore statements work correctly. |
I will drop one cent here:
|
FWIW: Here's a project that has the problem: https://yqnigwvz.github.stackblitz.io |
@Javin007 could you try with the following:
You will need to change your jest config when you update to the alpha of
Obviously you'll need to change everything that's different, this is just from my project. Upgrading to the alpha version and sticking with Jest 23 for now should fix it. |
It does indeed seem to be working now. So it would seem it's the fix is indeed in the Jest alpha. Thanks for your help! |
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. |
Versions.
$ ng --version
@angular/cli: 1.0.0-rc.2
node: 6.9.5
os: win32 x64
@angular/common: 4.0.0-rc.5
@angular/compiler: 4.0.0-rc.5
@angular/core: 4.0.0-rc.5
@angular/forms: 4.0.0-rc.5
@angular/http: 4.0.0-rc.5
@angular/platform-browser: 4.0.0-rc.5
@angular/platform-browser-dynamic: 4.0.0-rc.5
@angular/router: 4.0.0-rc.5
@angular/cli: 1.0.0-rc.2
@angular/compiler-cli: 4.0.0-rc.5
Repro steps.
I have made a sample project, to reproduce this weird behaviour.
Please take a look at: https://github.com/Loster102/angular-coverage-sample
When I run 'ng test -cc true', there is a successful testrun.
But when I look at the coverage report, the branch coverage is really strange.
It says, that the constructor is not fully covered.
Desired functionality.
I would have expected that even the constructor is fully covered.
Mention any other details that might be useful.
In my real world application, there are some further strange behaviours, exactly like the one above.
I try to reproduce these in the sample project. In this application, I'm using angular@4.0.0-rc.2 and @angular/cli@1.0.0-rc.1.
The text was updated successfully, but these errors were encountered: