Skip to content

Commit 3bd0369

Browse files
committed
don't use noFF102
1 parent cb19463 commit 3bd0369

File tree

3 files changed

+3
-22
lines changed

3 files changed

+3
-22
lines changed

.circleci/test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ case $1 in
8585
;;
8686

8787
mathjax-firefox102+)
88-
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --skip-tags=noFF102 --nowatch &&
89-
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --mathjax3 --skip-tags=noFF102 --nowatch &&
88+
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --nowatch &&
89+
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --mathjax3 --nowatch &&
9090
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax_config --mathjax3 --nowatch &&
9191
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax_config --nowatch || EXIT_STATE=$?
9292
exit $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', 'noFF102', 'gl', 'flaky'];
34+
var TAGS = ['noCI', 'noCIdep', 'gl', 'flaky'];
3535
var IT_ONLY_TAGS = ['gl', 'flaky'];
3636
var logs = [];
3737

test/jasmine/bundle_tests/mathjax_test.js

-19
Original file line numberDiff line numberDiff line change
@@ -95,25 +95,6 @@ describe('Test MathJax v' + mathjaxVersion + ':', function() {
9595
.then(done, done.fail);
9696
});
9797

98-
it('@noFF102 should scoot x-axis title (with MathJax) below x-axis ticks', function(done) {
99-
expect(window.MathJax).toBeDefined();
100-
101-
testTitleScoot({
102-
data: [{
103-
y: [1, 2, 1]
104-
}],
105-
layout: {
106-
xaxis: {title: texTitle},
107-
width: 500,
108-
height: 500,
109-
margin: {t: 100, b: 100, l: 100, r: 100}
110-
}
111-
}, {
112-
xCategories: longCats
113-
})
114-
.then(done, done.fail);
115-
});
116-
11798
it('should scoot x-axis title below x-axis ticks (with MathJax)', function(done) {
11899
expect(window.MathJax).toBeDefined();
119100

0 commit comments

Comments
 (0)