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 d12ff23 commit 3f731e3Copy full SHA for 3f731e3
packages/@angular/cli/commands/test.ts
@@ -4,9 +4,10 @@ import { CliConfig } from '../models/config';
4
import { oneLine } from 'common-tags';
5
6
const config = CliConfig.fromProject() || CliConfig.fromGlobal();
7
-const testConfigDefaults = config.getPaths('defaults.build', [
8
- 'progress', 'poll'
9
-]);
+const testConfigDefaults = {
+ progress: config.get('defaults.build.progress'),
+ poll: config.get('defaults.build.poll')
10
+};
11
12
export interface TestOptions {
13
watch?: boolean;
0 commit comments