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 331b398 commit 3c45be6Copy full SHA for 3c45be6
src/reporters/testReporter.ts
@@ -5,7 +5,6 @@
5
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
*/
7
import {
8
- ApexTestRunResultStatus,
9
HumanReporter,
10
JUnitReporter,
11
OutputDirConfig,
@@ -64,7 +63,7 @@ export class TestReporter {
64
63
}
65
66
try {
67
- if (result.summary && result.summary.outcome === ApexTestRunResultStatus.Failed.toString()) {
+ if (result.summary && result.summary.outcome === 'Failed') {
68
process.exitCode = FAILURE_EXIT_CODE;
69
70
switch (options['result-format']) {
0 commit comments