Skip to content

Commit d80adde

Browse files
alan-agius4dgp1130
authored andcommittedFeb 7, 2023
fix(@angular-devkit/build-angular): do not fail compilation when spec pattern does not match
Previously, we failed the compilation when the specified patterns did not match any spec file. This breaks the case were users configure Karma to not fail on empty test suit. Closes #24644 (cherry picked from commit d9c697b)
1 parent 499173b commit d80adde

File tree

2 files changed

+11
-21
lines changed

2 files changed

+11
-21
lines changed
 

‎packages/angular_devkit/build_angular/src/builders/karma/find-tests-plugin.ts

+10-12
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
import assert from 'assert';
1010
import { PathLike, constants, promises as fs } from 'fs';
1111
import glob, { hasMagic } from 'glob';
12+
import { pluginName } from 'mini-css-extract-plugin';
1213
import { basename, dirname, extname, join, relative } from 'path';
1314
import { promisify } from 'util';
1415
import type { Compilation, Compiler } from 'webpack';
15-
import { addError } from '../../utils/webpack-diagnostics';
1616

1717
const globPromise = promisify(glob);
1818

@@ -49,23 +49,21 @@ export class FindTestsPlugin {
4949
// Add tests files are part of the entry-point.
5050
webpackOptions.entry = async () => {
5151
const specFiles = await findTests(include, exclude, workspaceRoot, projectSourceRoot);
52-
53-
if (!specFiles.length) {
54-
assert(this.compilation, 'Compilation cannot be undefined.');
55-
addError(
56-
this.compilation,
57-
`Specified patterns: "${include.join(', ')}" did not match any spec files.`,
58-
);
59-
}
60-
6152
const entrypoints = await entry;
6253
const entrypoint = entrypoints['main'];
6354
if (!entrypoint.import) {
6455
throw new Error(`Cannot find 'main' entrypoint.`);
6556
}
6657

67-
originalImport ??= entrypoint.import;
68-
entrypoint.import = [...originalImport, ...specFiles];
58+
if (specFiles.length) {
59+
originalImport ??= entrypoint.import;
60+
entrypoint.import = [...originalImport, ...specFiles];
61+
} else {
62+
assert(this.compilation, 'Compilation cannot be undefined.');
63+
this.compilation
64+
.getLogger(pluginName)
65+
.error(`Specified patterns: "${include.join(', ')}" did not match any spec files.`);
66+
}
6967

7068
return entrypoints;
7169
};

‎packages/angular_devkit/build_angular/src/builders/karma/tests/options/include_spec.ts

+1-9
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,8 @@ describeBuilder(execute, KARMA_BUILDER_INFO, (harness) => {
1717
include: ['abc.spec.ts', 'def.spec.ts'],
1818
});
1919

20-
const { result, logs } = await harness.executeOnce();
20+
const { result } = await harness.executeOnce();
2121
expect(result?.success).toBeFalse();
22-
expect(logs).toContain(
23-
jasmine.objectContaining({
24-
level: 'error',
25-
message: jasmine.stringContaining(
26-
'Specified patterns: "abc.spec.ts, def.spec.ts" did not match any spec files.',
27-
),
28-
}),
29-
);
3022
});
3123

3224
[

0 commit comments

Comments
 (0)
Please sign in to comment.