From 260a9d9e7d7dbd4ba89650ea1a9139363aeb7656 Mon Sep 17 00:00:00 2001 From: CANCI0 Date: Thu, 25 Apr 2024 17:43:48 +0200 Subject: [PATCH] Tests UsersPage arreglados --- webapp/src/pages/Social/UsersPage.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/src/pages/Social/UsersPage.test.js b/webapp/src/pages/Social/UsersPage.test.js index 4a0ce20e..8b3ac200 100644 --- a/webapp/src/pages/Social/UsersPage.test.js +++ b/webapp/src/pages/Social/UsersPage.test.js @@ -41,7 +41,7 @@ describe("UsersPage", () => { ); await waitFor(() => { - expect(screen.getByText("Amigo")).toBeInTheDocument(); + expect(screen.getByText("Ya sois amigos")).toBeInTheDocument(); }); }); @@ -62,7 +62,7 @@ describe("UsersPage", () => { ); await waitFor(() => { - expect(screen.getByText("Amigo")).toBeInTheDocument(); + expect(screen.getByText("Ya sois amigos")).toBeInTheDocument(); }); }); @@ -83,7 +83,7 @@ describe("UsersPage", () => { ); await waitFor(() => { - expect(screen.getByText("Amigo")).toBeInTheDocument(); + expect(screen.getByText("Ya sois amigos")).toBeInTheDocument(); }); });