Skip to content

Commit 62b7def

Browse files
committed
prettier
1 parent b295a78 commit 62b7def

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages-exp/analytics-exp/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function stubFetch(status: number, body: object): void {
6767
// Stub indexedDB.open() because sinon's clock does not know
6868
// how to wait for the real indexedDB callbacks to resolve.
6969
function stubIdbOpen(): void {
70-
idbOpenStub = stub(indexedDB, 'open').returns(fakeRequest as any);
70+
idbOpenStub = stub(indexedDB, 'open').returns(fakeRequest as any);
7171
}
7272

7373
describe('FirebaseAnalytics instance tests', () => {

packages/component/src/provider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ export class Provider<T extends Name> {
3838
string,
3939
Deferred<NameServiceMapping[T]>
4040
> = new Map();
41-
private readonly instancesOptions: Map<string, Record<string, unknown>> = new Map();
41+
private readonly instancesOptions: Map<string, Record<string, unknown>> =
42+
new Map();
4243
private onInitCallbacks: Map<string, Set<OnInitCallBack<T>>> = new Map();
4344

4445
constructor(

0 commit comments

Comments
 (0)