File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export function addEqualityMatcher(): void {
87
87
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
88
88
const assertEql = ( _super : ( r : unknown , l : unknown ) => boolean ) => {
89
89
originalFunction = originalFunction || _super ;
90
- return function ( ...args : unknown [ ] ) : void {
90
+ return function ( this : unknown , ...args : unknown [ ] ) : void {
91
91
if ( isActive ) {
92
92
const [ expected , msg ] = args ;
93
93
utils . flag ( this , 'message' , msg ) ;
Original file line number Diff line number Diff line change 2
2
"extends" : " ../../config/tsconfig.base.json" ,
3
3
"compilerOptions" : {
4
4
"outDir" : " dist" ,
5
- "noImplicitThis" : false ,
6
5
"strictBindCallApply" : false ,
7
6
"strictPropertyInitialization" : false
8
7
},
You can’t perform that action at this time.
0 commit comments