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 6012017 commit 19c73fdCopy full SHA for 19c73fd
src/commands/apex/get/test.ts
@@ -68,7 +68,7 @@ export default class Test extends SfCommand<RunResult> {
68
'result-format': flags['result-format'],
69
json: flags.json,
70
'code-coverage': flags['code-coverage'],
71
- concise: flags['concise'],
+ concise: flags.concise,
72
});
73
}
74
src/reporters/testReporter.ts
@@ -55,7 +55,7 @@ export class TestReporter {
55
options['output-dir'],
56
options['result-format'] as ResultFormat | undefined,
57
Boolean(options['detailed-coverage']),
58
- options['concise'],
+ options.concise,
59
options.synchronous
60
);
61
0 commit comments