We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99c08c commit b716081Copy full SHA for b716081
packages/angular_devkit/build_angular/src/webpack/plugins/karma/karma.ts
@@ -149,7 +149,7 @@ const init: any = (config: any, emitter: any) => {
149
webpackMiddleware = webpackDevMiddleware(compiler, webpackMiddlewareConfig);
150
emitter.on('exit', (done: any) => {
151
webpackMiddleware.close();
152
- done();
+ compiler.close(() => done());
153
});
154
155
function unblock() {
0 commit comments