Skip to content

Commit

Permalink
test: temporary skip Safari when running integration and expectation …
Browse files Browse the repository at this point in the history
…tests
  • Loading branch information
chrisguttandin committed Apr 7, 2018
1 parent 835a07c commit 84c32f6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
14 changes: 10 additions & 4 deletions config/karma/config-expectation.js
Expand Up @@ -59,8 +59,11 @@ module.exports = (config) => {

browsers: [
'ChromeSauceLabs',
'FirefoxSauceLabs',
'SafariSauceLabs'
'FirefoxSauceLabs'
/*
* @todo Enable tests in Safari again when it supports transferables again.
* 'SafariSauceLabs'
*/
],

captureTimeout: 120000,
Expand Down Expand Up @@ -95,8 +98,11 @@ module.exports = (config) => {
'ChromeHeadless',
'ChromeCanaryHeadless',
'FirefoxHeadless',
'FirefoxDeveloperHeadless',
'Safari'
'FirefoxDeveloperHeadless'
/*
* @todo Enable tests in Safari again when it supports transferables again.
* 'Safari'
*/
]

});
Expand Down
14 changes: 10 additions & 4 deletions config/karma/config-integration.js
Expand Up @@ -59,8 +59,11 @@ module.exports = (config) => {

browsers: [
'ChromeSauceLabs',
'FirefoxSauceLabs',
'SafariSauceLabs'
'FirefoxSauceLabs'
/*
* @todo Enable tests in Safari again when it supports transferables again.
* 'SafariSauceLabs'
*/
],

captureTimeout: 120000,
Expand Down Expand Up @@ -95,8 +98,11 @@ module.exports = (config) => {
'ChromeHeadless',
'ChromeCanaryHeadless',
'FirefoxHeadless',
'FirefoxDeveloperHeadless',
'Safari'
'FirefoxDeveloperHeadless'
/*
* @todo Enable tests in Safari again when it supports transferables again.
* 'Safari'
*/
]

});
Expand Down

0 comments on commit 84c32f6

Please sign in to comment.