Skip to content

Commit 6c9663d

Browse files
committed
fix
1 parent 076b3ab commit 6c9663d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
APP_BUILD_TYPE="VSCode (Linux)" node ./.circleci/e2e-results.js
133133
# curl -H "Content-type: application/json" --data @e2e.report.json -H "Authorization: Bearer $SLACK_TEST_REPORT_KEY" -X POST https://slack.com/api/chat.postMessage
134134
- store_test_results:
135-
path: tests/e2e/results
135+
path: tests/e2e/mochawesome-report
136136
- store_artifacts:
137137
path: tests/e2e/mochawesome-report
138138
destination: tests/e2e/mochawesome-report

.circleci/e2e-results.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const testRunResult = {
3434
},
3535
],
3636
};
37-
const failed = result.stats.tests - result.stats.passes;
37+
const failed = result.stats.failures;
3838
if (failed) {
3939
results.passed = false;
4040
testRunResult.color = '#cc0000';

0 commit comments

Comments
 (0)