@@ -159,7 +159,7 @@ describe('aspnet-oauth:app', () => {
159159 if ( clone . status !== 0 && clone . output ) {
160160 console . error ( clone . output . toString ( 'utf8' ) ) ;
161161 }
162- assert . equal ( clone . status , 0 ) ;
162+ assert . strictEqual ( clone . status , 0 ) ;
163163
164164 // Run the generator to create the project
165165 context = await helpers . run ( path . join ( __dirname , '../generators/app' ) , { tmpdir : false } )
@@ -182,7 +182,7 @@ describe('aspnet-oauth:app', () => {
182182 if ( dotnetSlnAdd . status !== 0 ) {
183183 console . error ( dotnetSlnAdd . output . toString ( 'utf8' ) ) ;
184184 }
185- assert . equal ( dotnetSlnAdd . status , 0 ) ;
185+ assert . strictEqual ( dotnetSlnAdd . status , 0 ) ;
186186
187187 // Build the solution, run the tests and generate the NuGet packages
188188 let build ;
@@ -196,7 +196,7 @@ describe('aspnet-oauth:app', () => {
196196 if ( build . status !== 0 && build . output ) {
197197 console . error ( build . output . toString ( 'utf8' ) ) ;
198198 }
199- assert . equal ( build . status , 0 ) ;
199+ assert . strictEqual ( build . status , 0 ) ;
200200 } ) ;
201201
202202 it ( 'compiles the provider' , ( done ) => {
0 commit comments