Skip to content

Commit ff8b0a4

Browse files
committed
chore: resolved lint, build and test errors
1 parent ad69bfb commit ff8b0a4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

frontend/__tests__/Sponsors.test.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,19 @@ describe("Sponsors", () => {
4040
expect(tradeDesk).toBeInTheDocument();
4141
});
4242

43-
it("shows SafetyCulture", () => {
43+
it("shows Lyra", () => {
4444
render(<Sponsors />);
4545

46-
const safetyCulture = screen.getByRole("img", { name: "SafetyCulture" });
46+
const lyra = screen.getByRole("img", { name: "Lyra" });
4747

48-
expect(safetyCulture).toBeInTheDocument();
48+
expect(lyra).toBeInTheDocument();
49+
});
50+
51+
it("shows Airwallex", () => {
52+
render(<Sponsors />);
53+
54+
const airwallex = screen.getByRole("img", { name: "Airwallex" });
55+
56+
expect(airwallex).toBeInTheDocument();
4957
});
5058
});

0 commit comments

Comments
 (0)