Skip to content
This repository was archived by the owner on Dec 5, 2018. It is now read-only.

Commit f472e39

Browse files
Further reduced the number of tests on Safari and IE, due to sporadic failures
1 parent 16f7027 commit f472e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixtures/test-helper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
describe(suite, function () {
3131
var tests = Object.keys(testData[suite]);
3232

33-
if (host.karma && host.browser && (host.browser.IE || host.browser.safari)) {
33+
if (host.env.CI && host.karma && host.browser && (host.browser.IE || host.browser.safari)) {
3434
// These browsers sporadically fail when run in SauceLabs via Karma.
3535
// So only run a subset of the tests to reduce the chance of failure.
3636
tests = tests.filter(function (test, index) {
37-
if (index % 15 === 0) {
37+
if (index % 25 === 0) {
3838
return test;
3939
}
4040
});

0 commit comments

Comments
 (0)