File tree 2 files changed +10
-16
lines changed
2 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,9 @@ exports.config = {
48
48
tunnelIdentifier,
49
49
} ,
50
50
{
51
- browserName : 'internet explorer' ,
52
- platform : 'Windows 8.1' ,
53
- version : '11' ,
54
- tunnelIdentifier,
55
- } ,
56
- {
57
- browserName : "MicrosoftEdge" ,
51
+ browserName : 'MicrosoftEdge' ,
58
52
platform : 'Windows 10' ,
59
- version : " 88.0" ,
53
+ version : ' 88.0' ,
60
54
tunnelIdentifier,
61
55
} ,
62
56
] ,
@@ -70,7 +64,7 @@ exports.config = {
70
64
jasmineNodeOpts : {
71
65
showColors : true ,
72
66
defaultTimeoutInterval : 30000 ,
73
- print : function ( ) { } ,
67
+ print : function ( ) { } ,
74
68
} ,
75
69
76
70
onPrepare ( ) {
@@ -80,10 +74,12 @@ exports.config = {
80
74
require ( 'ts-node' ) . register ( {
81
75
project : require ( 'path' ) . join ( __dirname , './tsconfig.json' ) ,
82
76
} ) ;
83
- jasmine . getEnv ( ) . addReporter ( new SpecReporter ( {
84
- spec : {
85
- displayStacktrace : StacktraceOption . PRETTY
86
- }
87
- } ) ) ;
77
+ jasmine . getEnv ( ) . addReporter (
78
+ new SpecReporter ( {
79
+ spec : {
80
+ displayStacktrace : StacktraceOption . PRETTY ,
81
+ } ,
82
+ } ) ,
83
+ ) ;
88
84
} ,
89
85
} ;
Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ export default async function () {
14
14
throw new Error ( 'SauceLabs is not configured.' ) ;
15
15
}
16
16
17
- await appendToFile ( '.browserslistrc' , 'IE 11' ) ;
18
-
19
17
// Workaround for https://github.com/angular/angular/issues/32192
20
18
await replaceInFile ( 'src/app/app.component.html' , / c l a s s = " m a t e r i a l - i c o n s " / g, '' ) ;
21
19
You can’t perform that action at this time.
0 commit comments