File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ describe('CLIEngine Unit Tests', () => {
144
144
const cliEngine = new CLIEngine ( options ) ;
145
145
const results = cliEngine . executeOnPackageJsonFiles ( patterns ) ;
146
146
147
- expect ( results ) . toStrictEqual ( expected ) ;
147
+ expect ( results ) . toEqual ( expected ) ;
148
148
} ) ;
149
149
150
150
test ( 'when called with patterns and ignorePath' , ( ) => {
@@ -324,7 +324,7 @@ describe('CLIEngine Unit Tests', () => {
324
324
const cliEngine = new CLIEngine ( options ) ;
325
325
const results = cliEngine . executeOnPackageJsonObject ( pkgObject , fileName ) ;
326
326
327
- expect ( results ) . toStrictEqual ( expected ) ;
327
+ expect ( results ) . toEqual ( expected ) ;
328
328
} ) ;
329
329
330
330
test ( 'when called with relative path' , ( ) => {
@@ -403,7 +403,7 @@ describe('CLIEngine Unit Tests', () => {
403
403
const cliEngine = new CLIEngine ( options ) ;
404
404
const results = cliEngine . executeOnPackageJsonObject ( pkgObject , fileName ) ;
405
405
406
- expect ( results ) . toStrictEqual ( expected ) ;
406
+ expect ( results ) . toEqual ( expected ) ;
407
407
} ) ;
408
408
} ) ;
409
409
You can’t perform that action at this time.
0 commit comments