Home > Article > Web Front-end > The Missing Ingredient for Angular Template Code Coverage and Future-Proof Testing
TL;DR: Turn on Ahead-Of-Time (AOT) compilation for your Angular tests to get accurate template code coverage, faster test execution, production-symmetry, and future-proof tests.
The option is already available for Vitest users and will soon be available for Karma and Jest (experimental builder) users.
Whether you are using Karma, Jest, or Vitest, you are probably using Just-In-Time (JIT) compilation for your Angular tests, as until recently, it was the only available option.
The problem is that JIT has a few significant downsides:
Since Angular 8 and the introduction of IVy, the Angular compiler has started transforming templates into instructions. Among many other benefits, this also meant that code coverage tools could map these instructions to the template and compute the code coverage accordingly.
Theoretically, it has been possible to produce code coverage by running tests with AOT since Angular 8, but the option was not available in Karma or Jest. It has only been possible to enable AOT for testing since Vitest support for Angular was added by the Analog team.
As of November 2024:
Whether you are using JIT or AOT, components will end up being compiled at some point. The main difference is that with AOT, the compilation is done once and can be cached, while with JIT, each test module might end up recompiling components.
This means that even if the transform phase is a bit slower with AOT, the overall test execution time will be faster. The numbers I've seen indicate around 20% faster execution, but this will depend heavily on the structure of your tests and the System Under Test.
We generally want our tests to be as symmetric as possible to the production environment to increase confidence. This is often challenging as it balances against other properties like the speed of the tests, the size of the System Under Test, or predictability.
The interesting aspect of AOT is that it improves production-symmetry without harming other properties. Using AOT, you will gain more confidence and achieve behavior that is closer to production.
More importantly, JIT has reached its limits and is becoming a liability for Angular. For instance, some Angular features are simply not supported in JIT (e.g. Deferrable Views). Other potential features from the Angular roadmap, like selectorless components, will probably be impossible to use with JIT.
Actually, since Angular's Signal Inputs (and similar functional APIs), JIT already requires some minimal transforms to work.
By switching to AOT, you are making your tests future-proof, ready to benefit from any innovation, and prepared for whatever the future holds for JIT.
By turning on AOT, some techniques that rely on dynamic constructs will break.
For instance, such usage will not work anymore:
// ? This is broken with AOT. const fixture = render(`<app-button></app-button>`, { imports: [Button] }); function render(template, { imports }) { @Component({ template, imports, }) class TestContainer {} return TestBed.createComponent(TestContainer); }
However, bypassing the AOT compilation is still possible (⚠️ for now ️⚠️):
function render(template, { imports }) { @Component({ jit: true, template, imports, }) class TestContainer {} return TestBed.createComponent(TestContainer); }
My advice is to avoid such constructs as much as possible and prefer creating test-specific components when needed, even though it might be a bit more verbose. In the future, the Angular team could provide alternatives that are both AOT-compatible and less boilerplat-y.
While Shallow Testing should not be your primary testing strategy as it is also less production-symmetric, it is still a useful technique to have in your toolbox.
With AOT, it is currently impossible to override a component's imports using TestBed#overrideComponent.
The workaround is to override the component's dependencies at the module level using the testing framework's API and replace components with their test doubles.
For example, with Vitest:
// app.cmp.spec.ts vi.mock('./street-map.cmp', async () => { return { StreetMap: await import('./street-map-fake.cmp').then( (m) => m.StreetMapFake ), }; }); // street-map-fake.cmp.ts @Component({ selector: 'app-street-map', template: 'Fake Street Map', }) class StreetMapFake implements StreetMap { // ... }
While this temporary workaround is AOT-compatible, it comes with a cost:
For now, I would recommend using JIT for Shallow Tests until TestBed#overrideComponent supports AOT or until the Angular team provides a better alternative. You can achieve this by using a separate configuration for Shallow Tests that use JIT for tests matching a specific pattern like *.jit.spec.ts.
Locate the vite.config.js file and turn on AOT by setting Angular's plugin jit option to false:
// ? This is broken with AOT. const fixture = render(`<app-button></app-button>`, { imports: [Button] }); function render(template, { imports }) { @Component({ template, imports, }) class TestContainer {} return TestBed.createComponent(TestContainer); }
We have the option to use either istanbul or native v8 for code coverage. For some reason, still under investigation, Vitest coverage remapping fails when using v8. The solution is to fall back to using istanbul instead.
Make sure you install the Vitest Istanbul version that matches Vitest's major version
function render(template, { imports }) { @Component({ jit: true, template, imports, }) class TestContainer {} return TestBed.createComponent(TestContainer); }
Update the vite.config.mts to enable coverage using Istanbul:
// app.cmp.spec.ts vi.mock('./street-map.cmp', async () => { return { StreetMap: await import('./street-map-fake.cmp').then( (m) => m.StreetMapFake ), }; }); // street-map-fake.cmp.ts @Component({ selector: 'app-street-map', template: 'Fake Street Map', }) class StreetMapFake implements StreetMap { // ... }
You can now run the tests:
export default defineConfig({ ... plugins: [ angular({ jit: false }), ... ], ... });
then click on the coverage icon and admire the template's code coverage. ?
(you will also find the coverage report in the coverage folder)
Note that the coverage is computed based on the instructions generated by the compiler, which means that:
It will even work for structural directives.
Now, guess what!?
The coverage also works for inline templates! ?
While code coverage is a useful tool, it should be used wisely. Keep it as an indicator, not a rigid goal.
Any observed statistical regularity will tend to collapse once pressure is placed upon it for control purposes.
-- Charles Goodhart
In other words, when a measure becomes a target, it ceases to be a good measure.
I'd add that the simplest metrics are often the most misleading.
Karma users will soon be able to enable AOT with a simple flag.
Jest users have three options:
Vitest users can enjoy the benefits of AOT right now. ?
If you are tired of bugs, or high-maintenance tests that break at each refactor, my video course, Pragmatic Angular Testing, is here to help!
Learn practical, reliable testing strategies to keep your Angular apps stable and maintainable. (Now 50% off for a limited time!)
The above is the detailed content of The Missing Ingredient for Angular Template Code Coverage and Future-Proof Testing. For more information, please follow other related articles on the PHP Chinese website!