前提
Next.jsとFirebase V9を使用しています。
JestとReact-testing-libraryを使ってテストを書き始めましたが、下記のエラーが表示されます。
The default Firebase app does not exist. Make sure you call initializeApp() before using any of the Firebase services.
実現したいこと
- エラーを解決してテストを実行したいです。
- セキュリティルールのテストではなく、コンポーネントやカスタムフックなどのロジックのテストを行ないたいです。
Firebaseのドキュメントでテストに言及するページを見つけたのですが、セキュリティルールに関するテストでした。
ルールのテストに関してはテスト用のライブラリがあり、そのライブラリとエミュレーターを使ったテスト方法が書かれています。
エミュレータ起動+テスト実行でルールのテストはできました。
- エミュレーターを使わないで済むテストの方法があれば知りたいです。
コンポーネントやロジックのテストをGithub Actionsで実行しようと考えています。
Github Actionsでエミュレーターは動かせるようですが、手間が多そうなのとルールのテストを実行するわけでは無いので、できることならエミュレーターは使いたくないです。
該当のソースコード
index.test.tsx
tsx
1/** 2 * @jest-environment jsdom 3 */ 4 5import React from "react"; 6import { render } from "@testing-library/react"; 7import Home from "pages/index"; 8 9const mockArticles = [ 10 { 11 title: "foo", 12 author: "bar" 13 }, 14]; 15 16describe("トップページ", () => { 17 it("renders a heading", () => { 18 const { getByText } = render(<Home articles={mockArticles} />); 19 20 expect(getByText("トップ")).toBeInTheDocument(); 21 }); 22});
jest.setup.ts
TypeScript
1import "@testing-library/jest-dom/extend-expect"; 2import { getApps, initializeApp } from "firebase/app"; 3import UUID from "uuidjs"; 4 5const getUuid = () => UUID.generate(); 6const firebaseConfig = { 7 apiKey: getUuid(), 8 authDomain: getUuid(), 9 projectId: getUuid(), 10 storageBucket: getUuid(), 11 messagingSenderId: getUuid(), 12 appId: getUuid(), 13 measurementId: getUuid(), 14}; 15 16beforeAll(async () => { 17 const currentApps = getApps(); 18 if (typeof window === "undefined" || currentApps.length !== 0) return; 19 initializeApp(firebaseConfig); 20}); 21
調べたこと
- FirebaseのIssueでエラー文で検索してみたのですが、該当するIssueが見つかりませんでした。
あなたの回答
tips
プレビュー