Skip to content

Commit ca701bb

Browse files
spec: initial spike of main-process based tests
1 parent 2e89348 commit ca701bb

14 files changed

+665
-341
lines changed

Diff for: .circleci/config.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,13 @@ steps-tests: &steps-tests
810810
- run:
811811
name: Check test results existence
812812
command: |
813-
MOCHA_FILE='src/junit/test-results.xml'
813+
MOCHA_FILE='src/junit/test-results-remote.xml'
814+
# Check if it exists and not empty.
815+
if [ ! -s "$MOCHA_FILE" ]; then
816+
exit 1
817+
fi
818+
819+
MOCHA_FILE='src/junit/test-results-main.xml'
814820
# Check if it exists and not empty.
815821
if [ ! -s "$MOCHA_FILE" ]; then
816822
exit 1

0 commit comments

Comments
 (0)