@@ -84,12 +84,12 @@ t.test('setup with color=always and unicode', t => {
8484 t . strictSame ( WARN_CALLED , [ [ 'ERESOLVE' , 'hello' , { some : 'object' } ] ] )
8585 WARN_CALLED . length = 0
8686
87- t . equal ( setupLog ( config ( {
87+ setupLog ( config ( {
8888 loglevel : 'warn' ,
8989 color : 'always' ,
9090 unicode : true ,
9191 progress : false ,
92- } ) ) , true )
92+ } ) )
9393
9494 npmlog . warn ( 'ERESOLVE' , 'hello' , { some : { other : 'object' } } )
9595 t . strictSame ( EXPLAIN_CALLED , [ [ { some : { other : 'object' } } , true , 2 ] ] ,
@@ -125,12 +125,12 @@ t.test('setup with color=true, no unicode, and non-TTY terminal', t => {
125125 process . stderr . isTTY = false
126126 process . stdout . isTTY = false
127127
128- t . equal ( setupLog ( config ( {
128+ setupLog ( config ( {
129129 loglevel : 'warn' ,
130130 color : false ,
131131 progress : false ,
132132 heading : 'asdf' ,
133- } ) ) , false )
133+ } ) )
134134
135135 t . strictSame ( settings , {
136136 level : 'warn' ,
@@ -156,12 +156,12 @@ t.test('setup with color=true, no unicode, and dumb TTY terminal', t => {
156156 process . stdout . isTTY = true
157157 process . env . TERM = 'dumb'
158158
159- t . equal ( setupLog ( config ( {
159+ setupLog ( config ( {
160160 loglevel : 'warn' ,
161161 color : true ,
162162 progress : false ,
163163 heading : 'asdf' ,
164- } ) ) , true )
164+ } ) )
165165
166166 t . strictSame ( settings , {
167167 level : 'warn' ,
@@ -187,12 +187,12 @@ t.test('setup with color=true, no unicode, and non-dumb TTY terminal', t => {
187187 process . stdout . isTTY = true
188188 process . env . TERM = 'totes not dum'
189189
190- t . equal ( setupLog ( config ( {
190+ setupLog ( config ( {
191191 loglevel : 'warn' ,
192192 color : true ,
193193 progress : true ,
194194 heading : 'asdf' ,
195- } ) ) , true )
195+ } ) )
196196
197197 t . strictSame ( settings , {
198198 level : 'warn' ,
@@ -218,12 +218,12 @@ t.test('setup with non-TTY stdout, TTY stderr', t => {
218218 process . stdout . isTTY = false
219219 process . env . TERM = 'definitely not a dummy'
220220
221- t . equal ( setupLog ( config ( {
221+ setupLog ( config ( {
222222 loglevel : 'warn' ,
223223 color : true ,
224224 progress : true ,
225225 heading : 'asdf' ,
226- } ) ) , false )
226+ } ) )
227227
228228 t . strictSame ( settings , {
229229 level : 'warn' ,
@@ -248,12 +248,12 @@ t.test('setup with TTY stdout, non-TTY stderr', t => {
248248 process . stderr . isTTY = false
249249 process . stdout . isTTY = true
250250
251- t . equal ( setupLog ( config ( {
251+ setupLog ( config ( {
252252 loglevel : 'warn' ,
253253 color : true ,
254254 progress : true ,
255255 heading : 'asdf' ,
256- } ) ) , true )
256+ } ) )
257257
258258 t . strictSame ( settings , {
259259 level : 'warn' ,
0 commit comments