Skip to content

Commit 8de5d2f

Browse files
committed
fix node tests
1 parent d80d924 commit 8de5d2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/app/src/firebaseNamespaceCore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export function createFirebaseNamespaceCore(
213213
// TODO: The eslint disable can be removed and the 'ignoreRestArgs'
214214
// option added to the no-explicit-any rule when ESlint releases it.
215215
// eslint-disable-next-line @typescript-eslint/no-explicit-any
216-
function(...args: any) {
216+
function (...args: any) {
217217
const serviceFxn = this._getService.bind(this, componentName);
218218
return serviceFxn.apply(
219219
this,

packages/app/test/firebaseApp.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,4 +342,4 @@ function createTestComponent(
342342
);
343343
component.setMultipleInstances(multiInstances);
344344
return component;
345-
}
345+
}

0 commit comments

Comments
 (0)