We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea89f75 commit 5adebf9Copy full SHA for 5adebf9
packages/angular_devkit/build_angular/src/karma/index.ts
@@ -93,6 +93,10 @@ export class KarmaBuilder implements Builder<KarmaBuilderSchema> {
93
// Pass onto Karma to emit BuildEvents.
94
successCb: () => obs.next({ success: true }),
95
failureCb: () => obs.next({ success: false }),
96
+ // Workaround for https://github.com/karma-runner/karma/issues/3154
97
+ // When this workaround is removed, user projects need to be updated to use a Karma
98
+ // version that has a fix for this issue.
99
+ toJSON: () => { },
100
};
101
102
// TODO: inside the configs, always use the project root and not the workspace root.
0 commit comments