Skip to content

Commit 06181c2

Browse files
alan-agius4filipesilva
authored andcommitted
fix(@angular-devkit/build-angular): parse web-workers in tests when webWorkerTsConfig is defined
The logic was inverted which caused workers not to be parsed when `webWorkerTsConfig` is defined.
1 parent efa5962 commit 06181c2

File tree

3 files changed

+118
-3
lines changed

3 files changed

+118
-3
lines changed

packages/angular_devkit/build_angular/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ LARGE_SPECS = {
295295
},
296296
"extract-i18n": {},
297297
"karma": {
298+
"size": "large",
298299
"extra_deps": [
299300
"@npm//karma",
300301
"@npm//karma-chrome-launcher",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
import { execute } from '../../index';
10+
import { BASE_OPTIONS, KARMA_BUILDER_INFO, describeBuilder } from '../setup';
11+
12+
describeBuilder(execute, KARMA_BUILDER_INFO, (harness) => {
13+
describe('Option: "webWorkerTsConfig"', () => {
14+
beforeEach(async () => {
15+
await harness.writeFiles({
16+
'src/tsconfig.worker.json': `
17+
{
18+
"extends": "../tsconfig.json",
19+
"compilerOptions": {
20+
"outDir": "../out-tsc/worker",
21+
"lib": [
22+
"es2018",
23+
"webworker"
24+
],
25+
"types": []
26+
},
27+
"include": [
28+
"**/*.worker.ts",
29+
]
30+
}`,
31+
'src/app/app.worker.ts': `
32+
/// <reference lib="webworker" />
33+
34+
const prefix: string = 'Data: ';
35+
addEventListener('message', ({ data }) => {
36+
postMessage(prefix + data);
37+
});
38+
`,
39+
'src/app/app.component.ts': `
40+
import { Component } from '@angular/core';
41+
42+
@Component({
43+
selector: 'app-root',
44+
template: ''
45+
})
46+
export class AppComponent {
47+
worker = new Worker(new URL('./app.worker', import.meta.url));
48+
}
49+
`,
50+
'./src/app/app.component.spec.ts': `
51+
import { TestBed } from '@angular/core/testing';
52+
import { AppComponent } from './app.component';
53+
54+
describe('AppComponent', () => {
55+
beforeEach(async () => {
56+
await TestBed.configureTestingModule({
57+
declarations: [
58+
AppComponent
59+
]
60+
}).compileComponents();
61+
});
62+
63+
it('worker should be defined', () => {
64+
const fixture = TestBed.createComponent(AppComponent);
65+
const app = fixture.debugElement.componentInstance;
66+
expect(app.worker).toBeDefined();
67+
});
68+
});`,
69+
});
70+
});
71+
72+
it(`should not parse web workers when "webWorkerTsConfig" is not set or set to undefined.`, async () => {
73+
harness.useTarget('test', {
74+
...BASE_OPTIONS,
75+
webWorkerTsConfig: undefined,
76+
});
77+
78+
await harness.writeFile(
79+
'./src/app/app.component.spec.ts',
80+
`
81+
import { TestBed } from '@angular/core/testing';
82+
import { AppComponent } from './app.component';
83+
84+
describe('AppComponent', () => {
85+
beforeEach(async () => {
86+
await TestBed.configureTestingModule({
87+
declarations: [
88+
AppComponent
89+
]
90+
}).compileComponents();
91+
});
92+
93+
it('worker should throw', () => {
94+
expect(() => TestBed.createComponent(AppComponent))
95+
.toThrowError(/Failed to construct 'Worker'/);
96+
});
97+
});`,
98+
);
99+
100+
const { result } = await harness.executeOnce();
101+
expect(result?.success).toBeTrue();
102+
});
103+
104+
it(`should parse web workers when "webWorkerTsConfig" is set.`, async () => {
105+
harness.useTarget('test', {
106+
...BASE_OPTIONS,
107+
webWorkerTsConfig: 'src/tsconfig.worker.json',
108+
});
109+
110+
const { result } = await harness.executeOnce();
111+
expect(result?.success).toBeTrue();
112+
});
113+
});
114+
});

packages/angular_devkit/build_angular/src/webpack/configs/test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ export function getTestConfig(
6464
rules: extraRules,
6565
parser:
6666
webWorkerTsConfig === undefined
67-
? undefined
68-
: {
67+
? {
6968
javascript: {
7069
worker: false,
7170
url: false,
7271
},
73-
},
72+
}
73+
: undefined,
7474
},
7575
plugins: extraPlugins,
7676
optimization: {

0 commit comments

Comments
 (0)