Skip to content

Commit ba4e145

Browse files
committed
chore: Update package format script and clean up test imports
1 parent b3ae16c commit ba4e145

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/firebaseui-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"build:local": "pnpm run build && pnpm pack",
2222
"dev": "tsup --watch",
2323
"lint": "tsc --noEmit",
24-
"format": "prettier --write \"src/**/*.ts\"",
24+
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
2525
"clean": "rimraf dist",
2626
"test": "vitest run tests/unit",
2727
"test:watch": "vitest tests/unit",

packages/firebaseui-core/tests/integration/auth.integration.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { GoogleAuthProvider } from 'firebase/auth';
55
import {
66
fuiSignInWithEmailAndPassword,
77
fuiCreateUserWithEmailAndPassword,
8-
fuiSignInWithEmailLink,
98
fuiSendSignInLinkToEmail,
109
fuiSignInAnonymously,
1110
fuiSendPasswordResetEmail,

packages/firebaseui-core/tests/unit/config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, it, expect, vi, beforeEach } from 'vitest';
22
import { initializeUI, $config, getTranslations } from '../../src/config';
33
import { fuiSignInAnonymously } from '../../src/auth';
4-
import { getAuth, onAuthStateChanged } from 'firebase/auth';
4+
import { onAuthStateChanged } from 'firebase/auth';
55
import type { FirebaseApp } from 'firebase/app';
66
import type { FUIConfig } from '../../src/types';
77
import { map } from 'nanostores';

0 commit comments

Comments
 (0)