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 976feee commit d4d842dCopy full SHA for d4d842d
.circleci/test.sh
@@ -83,6 +83,13 @@ case $1 in
83
exit $EXIT_STATE
84
;;
85
86
+ jasmine-bundle)
87
+ set_timezone
88
+
89
+ npm run test-bundle || EXIT_STATE=$?
90
+ exit $EXIT_STATE
91
+ ;;
92
93
make-baselines)
94
SUITE=$(find $ROOT/test/image/mocks/ -type f -printf "%f\n" | sed 's/\.json$//1' | circleci tests split)
95
python3 test/image/make_baseline.py $SUITE || EXIT_STATE=$?
@@ -94,13 +101,6 @@ case $1 in
101
102
96
103
97
- jasmine-bundle)
98
- set_timezone
99
-
100
- npm run test-bundle || EXIT_STATE=$?
- exit $EXIT_STATE
- ;;
104
source-syntax)
105
npm run lint || EXIT_STATE=$?
106
npm run test-syntax || EXIT_STATE=$?
0 commit comments