We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7135fa commit 0701afcCopy full SHA for 0701afc
packages/angular_devkit/build_angular/src/karma/index.ts
@@ -8,7 +8,7 @@
8
import { BuilderContext, BuilderOutput, createBuilder } from '@angular-devkit/architect';
9
import { resolve } from 'path';
10
import { Observable, from } from 'rxjs';
11
-import { switchMap } from 'rxjs/operators';
+import { defaultIfEmpty, switchMap } from 'rxjs/operators';
12
import * as webpack from 'webpack';
13
import {
14
getCommonConfig,
@@ -128,6 +128,7 @@ export function execute(
128
}
129
};
130
})),
131
+ defaultIfEmpty({ success: false }),
132
);
133
134
0 commit comments