We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad69bfb commit ff8b0a4Copy full SHA for ff8b0a4
frontend/__tests__/Sponsors.test.tsx
@@ -40,11 +40,19 @@ describe("Sponsors", () => {
40
expect(tradeDesk).toBeInTheDocument();
41
});
42
43
- it("shows SafetyCulture", () => {
+ it("shows Lyra", () => {
44
render(<Sponsors />);
45
46
- const safetyCulture = screen.getByRole("img", { name: "SafetyCulture" });
+ const lyra = screen.getByRole("img", { name: "Lyra" });
47
48
- expect(safetyCulture).toBeInTheDocument();
+ 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();
57
58
0 commit comments