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 = [
6464 base : 'SauceLabs' ,
6565 browserName : 'android' ,
6666 platform : 'Linux' ,
67- version : '4.4 '
67+ version : '4.2 '
6868 }
6969 }
7070]
7171
7272for ( var i = 0 ; i < 3 ; i ++ ) {
7373 exports [ 'batch' + ( i + 1 ) ] = {
7474 sauceLabs : sauceConfig ,
75- captureTimeout : 600000 ,
75+ // mobile emulators are really slow
76+ captureTimeout : 300000 ,
77+ browserNoActivityTimeout : 300000 ,
7678 customLaunchers : batches [ i ] ,
7779 browsers : Object . keys ( batches [ i ] ) ,
7880 reporters : [ 'progress' , 'saucelabs' ]
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ describe('Global API', function () {
1919 expect ( Test . options . a ) . toBe ( 1 )
2020 expect ( Test . options . b ) . toBe ( 2 )
2121 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 ( )
2324 var t = new Test ( {
2425 a : 2
2526 } )
You can’t perform that action at this time.
0 commit comments