MOB-722: unneeded beforeall

This commit is contained in:
sepeterson
2025-12-15 15:33:44 -06:00
parent 40a7f912dd
commit 42c7beab45

View File

@@ -1,14 +1,9 @@
import { screen } from "@testing-library/react-native"; import { screen } from "@testing-library/react-native";
import MatchHeader from "components/Match/MatchHeader"; import MatchHeader from "components/Match/MatchHeader";
import initI18next from "i18n/initI18next";
import React from "react"; import React from "react";
import factory from "tests/factory"; import factory from "tests/factory";
import { renderComponent } from "tests/helpers/render"; import { renderComponent } from "tests/helpers/render";
beforeAll( async () => {
await initI18next();
} );
describe( "MatchHeader", () => { describe( "MatchHeader", () => {
it( "does not render content when topSuggestion is not provided", () => { it( "does not render content when topSuggestion is not provided", () => {
renderComponent( <MatchHeader /> ); renderComponent( <MatchHeader /> );