Skip to content

Commit 6004bd5

Browse files
committed
clear IE option in karma config
1 parent 204a20d commit 6004bd5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/jasmine/karma.conf.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ var argv = minimist(process.argv.slice(4), {
1414
'info',
1515
'nowatch', 'randomize',
1616
'failFast', 'doNotFailOnEmptyTestSuite',
17-
'Chrome', 'Firefox', 'IE11',
17+
'Chrome', 'Firefox',
1818
'verbose', 'showSkipped', 'report-progress', 'report-spec', 'report-dots'
1919
],
2020
alias: {
2121
Chrome: 'chrome',
2222
Firefox: ['firefox', 'FF'],
23-
IE11: ['ie11'],
2423
bundleTest: ['bundletest', 'bundle_test'],
2524
nowatch: 'no-watch',
2625
failFast: 'fail-fast',
@@ -65,7 +64,6 @@ if(argv.info) {
6564
' - `--mathjax3`: to load mathjax v3 in relevant test',
6665
' - `--Chrome` (alias `--chrome`): run test in (our custom) Chrome browser',
6766
' - `--Firefox` (alias `--FF`, `--firefox`): run test in (our custom) Firefox browser',
68-
' - `--IE11` (alias -- `ie11`)`: run test in IE11 browser',
6967
' - `--nowatch (dflt: `false`, `true` on CI)`: run karma w/o `autoWatch` / multiple run mode',
7068
' - `--randomize` (dflt: `false`): randomize test ordering (useful to detect bad test teardown)',
7169
' - `--failFast` (dflt: `false`): exit karma upon first test failure',
@@ -342,7 +340,6 @@ func.defaultConfig.files.push(testFileGlob);
342340
var browsers = func.defaultConfig.browsers;
343341
if(argv.Chrome) browsers.push('_Chrome');
344342
if(argv.Firefox) browsers.push('_Firefox');
345-
if(argv.IE11) browsers.push('IE');
346343
if(browsers.length === 0) browsers.push('_Chrome');
347344

348345
module.exports = func;

0 commit comments

Comments
 (0)