Skip to content

Commit

Permalink
Fix browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun committed Apr 22, 2018
1 parent 048778c commit f8f1bd7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const BROWSERS = {
'Internet Explorer@latest': {
'IE@latest': {
'Windows': ['10', '8.1', '8', '7', 'XP'],
},
'Microsoft Edge@latest': {
Expand All @@ -17,13 +17,13 @@ const BROWSERS = {
},
'Opera@latest': {
'Windows': ['10', '8.1', '8', '7', 'XP'],
'OS X': ['High Sierra', 'Sierra', 'El Capitan', 'Yosemite', 'Mavericks', 'Mountain Lion', 'Lion', 'Snow Leopard'],
},
'Opera@12.16': {
'Windows': ['8.1'],
// In 'Snow Leopard' Object.assign is unknown
'OS X': ['High Sierra', 'Sierra', 'El Capitan', 'Yosemite', 'Mavericks', 'Mountain Lion', 'Lion'],
},
// In Opera@12.16 Symbol is unknown
'Safari@latest': {
'OS X': ['High Sierra', 'Sierra', 'El Capitan', 'Yosemite', 'Mavericks', 'Mountain Lion', 'Lion', 'Snow Leopard'],
// In old versions Symbol is unknown
'OS X': ['High Sierra', 'Sierra', 'El Capitan'],
},
};

Expand Down Expand Up @@ -109,5 +109,7 @@ module.exports = function(config) {
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,

concurrency: 5,
}));
};

0 comments on commit f8f1bd7

Please sign in to comment.