We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56cbbfd commit 1674abfCopy full SHA for 1674abf
packages/firestore/test/util/equality_matcher.ts
@@ -87,7 +87,11 @@ export function addEqualityMatcher(): void {
87
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
88
const assertEql = (_super: (r: unknown, l: unknown) => boolean) => {
89
originalFunction = originalFunction || _super;
90
- return function(this: unknown, expected?: unknown, msg?: unknown): void {
+ return function(
91
+ this: unknown,
92
+ expected?: unknown,
93
+ msg?: unknown
94
+ ): void {
95
if (isActive) {
96
utils.flag(this, 'message', msg);
97
const actual = utils.flag(this, 'object');
0 commit comments