Angular CLI 15.1.4 breaks ng test with jsdom because CLI is loading JavaScript bundles as module #24778
Open
1 task done
Labels
area: @angular-devkit/build-angular
devkit/build-angular:karma
freq1: low
Only reported by a handful of users who observe it rarely
severity5: regression
type: bug/fix
Command
test
Is this a regression?
The previous version in which this bug was not present was
15.1.3
Description
I have a standard Angular project, using Karma & Jasmine for unit tests. The unit tests run can run in either Chrome or jsdom. I need jsdom because my CI environment doesn't have Chrome (org policy: no browsers on servers).
Angular CLI 15.1.4 introduced a change in #24620 wherein Javascript bundles are loaded as modules.
Unfortunately, jsdom doesn't support <script type="module">; it simply doesn't load the module scripts. This is a known issue in jsdom - jsdom/jsdom#2475
Ideally jsdom would add module support; but since that ticket has been open for four years, I'm not holding out much hope. So instead, here's my request:
REQUEST: Could Angular CLI add a flag to add/omit type="module" ?
My workaround for now is patching jsdom (using patch-package) to ignore the type attribute on <script type="module">.
Minimal Reproduction
Clone my git repo: https://github.com/andrewpmontgomery/angular-15-jsdom
npm install
npm run test:chrome
and all three tests should pass.npm run test:jsdom
and it should time-out.npm run patch-package
npm run test:jsdom
again and now it works.Exception or Error
No response
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: