@@ -14,13 +14,12 @@ var argv = minimist(process.argv.slice(4), {
14
14
'info' ,
15
15
'nowatch' , 'randomize' ,
16
16
'failFast' , 'doNotFailOnEmptyTestSuite' ,
17
- 'Chrome' , 'Firefox' , 'IE11' ,
17
+ 'Chrome' , 'Firefox' ,
18
18
'verbose' , 'showSkipped' , 'report-progress' , 'report-spec' , 'report-dots'
19
19
] ,
20
20
alias : {
21
21
Chrome : 'chrome' ,
22
22
Firefox : [ 'firefox' , 'FF' ] ,
23
- IE11 : [ 'ie11' ] ,
24
23
bundleTest : [ 'bundletest' , 'bundle_test' ] ,
25
24
nowatch : 'no-watch' ,
26
25
failFast : 'fail-fast' ,
@@ -65,7 +64,6 @@ if(argv.info) {
65
64
' - `--mathjax3`: to load mathjax v3 in relevant test' ,
66
65
' - `--Chrome` (alias `--chrome`): run test in (our custom) Chrome browser' ,
67
66
' - `--Firefox` (alias `--FF`, `--firefox`): run test in (our custom) Firefox browser' ,
68
- ' - `--IE11` (alias -- `ie11`)`: run test in IE11 browser' ,
69
67
' - `--nowatch (dflt: `false`, `true` on CI)`: run karma w/o `autoWatch` / multiple run mode' ,
70
68
' - `--randomize` (dflt: `false`): randomize test ordering (useful to detect bad test teardown)' ,
71
69
' - `--failFast` (dflt: `false`): exit karma upon first test failure' ,
@@ -342,7 +340,6 @@ func.defaultConfig.files.push(testFileGlob);
342
340
var browsers = func . defaultConfig . browsers ;
343
341
if ( argv . Chrome ) browsers . push ( '_Chrome' ) ;
344
342
if ( argv . Firefox ) browsers . push ( '_Firefox' ) ;
345
- if ( argv . IE11 ) browsers . push ( 'IE' ) ;
346
343
if ( browsers . length === 0 ) browsers . push ( '_Chrome' ) ;
347
344
348
345
module . exports = func ;
0 commit comments