@@ -770,7 +770,7 @@ describe('Processor', function() {
770770 } )
771771 . saveToFile ( testFile ) ;
772772 } ) ;
773-
773+
774774 it ( 'should pass input stream errors through to error handler' , function ( done ) {
775775 var testFile = path . join ( __dirname , 'assets' , 'testConvertFromStream.avi' )
776776
@@ -780,12 +780,12 @@ describe('Processor', function() {
780780 process . nextTick ( ( ) => this . emit ( 'error' , readError ) )
781781 }
782782 } )
783-
783+
784784 const command = this . getCommand ( { source : instream , logger : testhelper . logger } )
785785
786786 let startCalled = false
787787 const self = this
788-
788+
789789 command
790790 . usingPreset ( 'divx' )
791791 . on ( 'start' , function ( ) {
@@ -953,21 +953,21 @@ describe('Processor', function() {
953953 new FfmpegCommand ( ) . writeToStream ( { end : true } ) ;
954954 } ) . should . throw ( / P a s s T h r o u g h s t r e a m i s n o t s u p p o r t e d o n n o d e v 0 .8 / ) ;
955955 } ) ;
956-
956+
957957 it ( 'should pass output stream errors through to error handler' , function ( done ) {
958-
958+
959959 const writeError = new Error ( 'Write Error' )
960960 const outstream = new ( require ( 'stream' ) . Writable ) ( {
961961 write ( chunk , encoding , callback ) {
962962 callback ( writeError )
963963 }
964964 } )
965-
965+
966966 const command = this . getCommand ( { source : this . testfile , logger : testhelper . logger } )
967967
968968 let startCalled = false
969969 const self = this
970-
970+
971971 command
972972 . usingPreset ( 'divx' )
973973 . on ( 'start' , function ( ) {
@@ -1076,7 +1076,7 @@ describe('Processor', function() {
10761076 } ) ;
10771077 } ) ;
10781078
1079- describe ( 'Remote I/O' , function ( ) {
1079+ describe . skip ( 'Remote I/O' , function ( ) {
10801080 this . timeout ( 60000 ) ;
10811081
10821082 var ffserver ;
0 commit comments