File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -64,15 +64,17 @@ var batches = [
64
64
base : 'SauceLabs' ,
65
65
browserName : 'android' ,
66
66
platform : 'Linux' ,
67
- version : '4.4 '
67
+ version : '4.2 '
68
68
}
69
69
}
70
70
]
71
71
72
72
for ( var i = 0 ; i < 3 ; i ++ ) {
73
73
exports [ 'batch' + ( i + 1 ) ] = {
74
74
sauceLabs : sauceConfig ,
75
- captureTimeout : 600000 ,
75
+ // mobile emulators are really slow
76
+ captureTimeout : 300000 ,
77
+ browserNoActivityTimeout : 300000 ,
76
78
customLaunchers : batches [ i ] ,
77
79
browsers : Object . keys ( batches [ i ] ) ,
78
80
reporters : [ 'progress' , 'saucelabs' ]
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ describe('Global API', function () {
19
19
expect ( Test . options . a ) . toBe ( 1 )
20
20
expect ( Test . options . b ) . toBe ( 2 )
21
21
expect ( Test . super ) . toBe ( Vue )
22
- expect ( Test . name ) . toBe ( 'Test' )
22
+ // function.name is not available in IE
23
+ expect ( Test . toString ( ) . match ( / ^ f u n c t i o n T e s t \s ? \( / ) ) . toBeTruthy ( )
23
24
var t = new Test ( {
24
25
a : 2
25
26
} )
You can’t perform that action at this time.
0 commit comments