File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 7070 name : Run jasmine tests (batch 2)
7171 command : ./.circleci/test.sh jasmine2
7272
73+ test-jasmine3 :
74+ docker :
75+ # need '-browsers' version to test in real (xvfb-wrapped) browsers
76+ - image : circleci/node:10.9.0-browsers
77+ working_directory : ~/plotly.js
78+ steps :
79+ - checkout
80+ - attach_workspace :
81+ at : ~/plotly.js
82+ - run :
83+ name : Run jasmine tests (batch 3)
84+ command : ./.circleci/test.sh jasmine3
85+
7386 test-image :
7487 docker :
7588 - image : plotly/testbed:latest
@@ -165,6 +178,9 @@ workflows:
165178 - test-jasmine2 :
166179 requires :
167180 - build
181+ - test-jasmine3 :
182+ requires :
183+ - build
168184 - test-image :
169185 requires :
170186 - build
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ case $1 in
4545 set_tz
4646
4747 npm run test-jasmine -- --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
48- retry npm run test-jasmine -- --tags=flaky --skip-tags=noCI
4948 npm run test-bundle || EXIT_STATE=$?
5049
5150 exit $EXIT_STATE
@@ -63,6 +62,14 @@ case $1 in
6362 exit $EXIT_STATE
6463 ;;
6564
65+ jasmine3)
66+ set_tz
67+
68+ npm run test-jasmine -- --tags=flaky --skip-tags=gl,noCI || EXIT_STATE=$?
69+
70+ exit $EXIT_STATE
71+ ;;
72+
6673 image)
6774 npm run test-image || EXIT_STATE=$?
6875 exit $EXIT_STATE
You can’t perform that action at this time.
0 commit comments