@@ -650,13 +650,14 @@ describe('file upload in request body', function () {
650650 } ) ;
651651 } ) ;
652652
653- describe ( 'should upload large files correctly' , function ( ) {
653+ ( IS_BROWSER ? describe . skip : describe ) ( 'should upload large files correctly' , function ( ) {
654654 var testUploadFile = 'test/fixtures/upload-file-large.json' ;
655655
656656 afterEach ( function ( ) {
657657 sh . rm ( '-rf' , testUploadFile ) ;
658658 } ) ;
659659
660+ // eslint-disable-next-line mocha/no-sibling-hooks
660661 before ( function ( done ) {
661662 this . enableTimeouts ( false ) ;
662663 if ( IS_DARWIN ) {
@@ -689,6 +690,7 @@ describe('file upload in request body', function () {
689690 } ) ;
690691 } ) ;
691692
693+ // eslint-disable-next-line mocha/no-identical-title
692694 it ( 'should complete the run' , function ( ) {
693695 expect ( testrun ) . to . be . ok ;
694696 sinon . assert . calledOnce ( testrun . start ) ;
@@ -697,7 +699,7 @@ describe('file upload in request body', function () {
697699 sinon . assert . callCount ( testrun . request , 1 ) ;
698700 } ) ;
699701
700- it ( 'should upload the file correctly' , function ( ) {
702+ it ( 'should upload the large file correctly' , function ( ) {
701703 sinon . assert . calledWith ( testrun . request . getCall ( 0 ) , null ) ;
702704
703705 var resp = JSON . parse ( testrun . response . getCall ( 0 ) . args [ 2 ] . stream . toString ( ) ) ;
0 commit comments