@@ -159,7 +159,7 @@ describe('aspnet-oauth:app', () => {
159
159
if ( clone . status !== 0 && clone . output ) {
160
160
console . error ( clone . output . toString ( 'utf8' ) ) ;
161
161
}
162
- assert . equal ( clone . status , 0 ) ;
162
+ assert . strictEqual ( clone . status , 0 ) ;
163
163
164
164
// Run the generator to create the project
165
165
context = await helpers . run ( path . join ( __dirname , '../generators/app' ) , { tmpdir : false } )
@@ -182,7 +182,7 @@ describe('aspnet-oauth:app', () => {
182
182
if ( dotnetSlnAdd . status !== 0 ) {
183
183
console . error ( dotnetSlnAdd . output . toString ( 'utf8' ) ) ;
184
184
}
185
- assert . equal ( dotnetSlnAdd . status , 0 ) ;
185
+ assert . strictEqual ( dotnetSlnAdd . status , 0 ) ;
186
186
187
187
// Build the solution, run the tests and generate the NuGet packages
188
188
let build ;
@@ -196,7 +196,7 @@ describe('aspnet-oauth:app', () => {
196
196
if ( build . status !== 0 && build . output ) {
197
197
console . error ( build . output . toString ( 'utf8' ) ) ;
198
198
}
199
- assert . equal ( build . status , 0 ) ;
199
+ assert . strictEqual ( build . status , 0 ) ;
200
200
} ) ;
201
201
202
202
it ( 'compiles the provider' , ( done ) => {
0 commit comments