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 6c90e0c commit 571c27cCopy full SHA for 571c27c
1 file changed
karma.conf.js
@@ -200,4 +200,13 @@ function configureSauceLabs(config) {
200
201
config.reporters.push('saucelabs');
202
config.browsers = Object.keys(config.customLaunchers);
203
+
204
+ // Certain tests seem to always fail on SauceLabs.
205
+ // They pass fine on local browsers, so I'm not sure why they fail when run remotely.
206
+ // So, exclude these tests when running on SauceLabs.
207
+ baseConfig.exclude = [
208
+ 'tests/specs/__({[ ! % & $ # @ ` ~ ,)}]__/**',
209
+ 'tests/specs/blank/**',
210
+ 'tests/specs/unknown/**'
211
+ ];
212
}
0 commit comments