@@ -153,13 +153,13 @@ describe('cli', () => {
153153 './node_modules/eslint/bin/eslint.js' ,
154154 '--no-ignore' , './test/fixtures' ,
155155 '-f' , 'json'
156- ] , { stdio : [ 'inherit' , 'pipe' , 'inherit' ] } )
156+ ] , { stdio : [ 'inherit' , 'pipe' , 'inherit' ] } )
157157
158158 const multiplexer = spawn ( process . execPath , [
159159 './bin/eslint-multiplexer' ,
160160 '--nopipe' ,
161161 '-b'
162- ] , { stdio : [ 'pipe' , 'pipe' , 'pipe' ] } )
162+ ] , { stdio : [ 'pipe' , 'pipe' , 'pipe' ] } )
163163
164164 multiplexer . stdin . setEncoding ( 'utf8' )
165165 eslint . stdout . pipe ( multiplexer . stdin )
@@ -189,13 +189,13 @@ describe('cli', () => {
189189 './bin/eslint-multiplexer' ,
190190 'eslint' ,
191191 '--no-ignore' , './test/fixtures/index.js'
192- ] , { stdio : [ 'inherit' , 'pipe' , 'inherit' ] } )
192+ ] , { stdio : [ 'inherit' , 'pipe' , 'inherit' ] } )
193193
194194 const eslint2 = spawn ( process . execPath , [
195195 './bin/eslint-multiplexer' ,
196196 'eslint' ,
197197 '--no-ignore' , './test/fixtures/first/index.js'
198- ] , { stdio : [ 'pipe' , 'pipe' , 'inherit' ] } )
198+ ] , { stdio : [ 'pipe' , 'pipe' , 'inherit' ] } )
199199
200200 eslint2 . stdin . setEncoding ( 'utf8' )
201201 eslint1 . stdout . pipe ( eslint2 . stdin )
@@ -204,7 +204,7 @@ describe('cli', () => {
204204 './bin/eslint-multiplexer' ,
205205 '--nopipe' ,
206206 '-b' , '--debug'
207- ] , { stdio : [ 'pipe' , 'pipe' , 'pipe' ] } )
207+ ] , { stdio : [ 'pipe' , 'pipe' , 'pipe' ] } )
208208
209209 multiplexer . stdin . setEncoding ( 'utf8' )
210210 eslint2 . stdout . pipe ( multiplexer . stdin )
0 commit comments