Skip to content

Commit 9bb7e76

Browse files
committed
do not run one mathjax test until firefox bug fixed
1 parent ba20321 commit 9bb7e76

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
at: ~/
181181
- run:
182182
name: Test MathJax on firefox-81
183-
command: .circleci/test.sh mathjax-firefox
183+
command: .circleci/test.sh mathjax-firefox82+
184184

185185
mathjax-firefoxLatest:
186186
docker:
@@ -198,7 +198,7 @@ jobs:
198198
at: ~/
199199
- run:
200200
name: Test MathJax on firefox-81
201-
command: .circleci/test.sh mathjax-firefox
201+
command: .circleci/test.sh mathjax-firefox82+
202202

203203
make-baselines:
204204
parallelism: 4

.circleci/test.sh

+5
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ case $1 in
7474
exit $EXIT_STATE
7575
;;
7676

77+
mathjax-firefox82+)
78+
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --skip-tags=noFF82 --bundleTest=mathjax --nowatch || EXIT_STATE=$?
79+
exit $EXIT_STATE
80+
;;
81+
7782
make-baselines)
7883
SUITE=$(find $ROOT/test/image/mocks/ -type f -printf "%f\n" | sed 's/\.json$//1' | circleci tests split)
7984
python3 test/image/make_baseline.py $SUITE || EXIT_STATE=$?

tasks/test_syntax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ assertCircularDeps();
3131
// check for for focus and exclude jasmine blocks
3232
function assertJasmineSuites() {
3333
var BLACK_LIST = ['fdescribe', 'fit', 'xdescribe', 'xit'];
34-
var TAGS = ['noCI', 'noCIdep', 'gl', 'flaky'];
34+
var TAGS = ['noCI', 'noCIdep', 'noFF82', 'gl', 'flaky'];
3535
var IT_ONLY_TAGS = ['gl', 'flaky'];
3636
var logs = [];
3737

test/jasmine/bundle_tests/mathjax_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ describe('Test MathJax:', function() {
9898
.then(done, done.fail);
9999
});
100100

101-
it('should scoot x-axis title (with MathJax) below x-axis ticks', function(done) {
101+
it('@noFF82 should scoot x-axis title (with MathJax) below x-axis ticks', function(done) {
102102
expect(window.MathJax).toBeDefined();
103103

104104
testTitleScoot({

0 commit comments

Comments
 (0)