Skip to content

Commit 8c8377f

Browse files
alan-agius4filipesilva
authored andcommittedFeb 9, 2022
fix(@angular-devkit/build-angular): block Karma from starting until build is complete
This change is inspired by karma-runner/karma-chrome-launcher#154 (comment) which blocks Karma from launching the browsers until the compilation is complete. This is needed especially for large applications when using code-coverage where otherwise the users would have to fine-tune several Karma timeouts such as `captureTimeout` for various environments. Closes #22495 (cherry picked from commit 7ce5000)
1 parent 214aede commit 8c8377f

File tree

1 file changed

+27
-14
lines changed
  • packages/angular_devkit/build_angular/src/webpack/plugins/karma

1 file changed

+27
-14
lines changed
 

‎packages/angular_devkit/build_angular/src/webpack/plugins/karma/karma.ts

+27-14
Original file line numberDiff line numberDiff line change
@@ -169,29 +169,42 @@ const init: any = (config: any, emitter: any) => {
169169
compiler.hooks.watchRun.tapAsync('karma', (_: any, callback: () => void) => handler(callback));
170170
compiler.hooks.run.tapAsync('karma', (_: any, callback: () => void) => handler(callback));
171171

172+
webpackMiddleware = webpackDevMiddleware(compiler, webpackMiddlewareConfig);
173+
emitter.on('exit', (done: any) => {
174+
webpackMiddleware.close();
175+
done();
176+
});
177+
172178
function unblock() {
173179
isBlocked = false;
174180
blocked.forEach((cb) => cb());
175181
blocked = [];
176182
}
177183

178184
let lastCompilationHash: string | undefined;
179-
compiler.hooks.done.tap('karma', (stats) => {
180-
if (stats.hasErrors()) {
181-
lastCompilationHash = undefined;
182-
} else if (stats.hash != lastCompilationHash) {
183-
// Refresh karma only when there are no webpack errors, and if the compilation changed.
184-
lastCompilationHash = stats.hash;
185-
emitter.refreshFiles();
186-
}
187-
unblock();
188-
});
185+
let isFirstRun = true;
186+
187+
return new Promise<void>((resolve) => {
188+
compiler.hooks.done.tap('karma', (stats) => {
189+
if (isFirstRun) {
190+
// This is needed to block Karma from launching browsers before Webpack writes the assets in memory.
191+
// See the below:
192+
// https://github.com/karma-runner/karma-chrome-launcher/issues/154#issuecomment-986661937
193+
// https://github.com/angular/angular-cli/issues/22495
194+
isFirstRun = false;
195+
resolve();
196+
}
189197

190-
webpackMiddleware = webpackDevMiddleware(compiler, webpackMiddlewareConfig);
198+
if (stats.hasErrors()) {
199+
lastCompilationHash = undefined;
200+
} else if (stats.hash != lastCompilationHash) {
201+
// Refresh karma only when there are no webpack errors, and if the compilation changed.
202+
lastCompilationHash = stats.hash;
203+
emitter.refreshFiles();
204+
}
191205

192-
emitter.on('exit', (done: any) => {
193-
webpackMiddleware.close();
194-
done();
206+
unblock();
207+
});
195208
});
196209
};
197210

0 commit comments

Comments
 (0)
Please sign in to comment.