Skip to content

Commit

Permalink
fix(firebase): biome error in building
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjing2222 committed Feb 27, 2025
1 parent 7f2befb commit 901ba0e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plugins/firebase/src/firebaseDatabase.spec.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import type {
BasePluginArgs,
Bundle,
DatabasePluginHooks,
} from "@hot-updater/plugin-core";
import { initializeApp, getApps, getApp } from "firebase/app";
import { getApp, getApps, initializeApp } from "firebase/app";
import {
getFirestore,
type QuerySnapshot,
collection,
doc,
setDoc,
getDoc,
query,
orderBy,
getDocs,
type QuerySnapshot,
getFirestore,
orderBy,
query,
setDoc,
} from "firebase/firestore";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { firebaseDatabase } from "./firebaseDatabase";

vi.mock("firebase/app", () => {
Expand Down

0 comments on commit 901ba0e

Please sign in to comment.