fix, testing: i18n not properly configured
This commit is contained in:
@@ -199,7 +199,7 @@ test("GroupCallView leaves the session when an error occurs", async () => {
|
||||
const user = userEvent.setup();
|
||||
const { rtcSession } = createGroupCallView(null);
|
||||
await user.click(screen.getByRole("button", { name: "Panic!" }));
|
||||
screen.getByText("error.generic");
|
||||
screen.getByText("Something went wrong");
|
||||
expect(leaveRTCSession).toHaveBeenCalledWith(
|
||||
rtcSession,
|
||||
"error",
|
||||
|
||||
@@ -30,6 +30,6 @@ test("InviteModal is accessible", async () => {
|
||||
);
|
||||
|
||||
expect(await axe(container)).toHaveNoViolations();
|
||||
await user.click(screen.getByRole("button", { name: "action.copy_link" }));
|
||||
await user.click(screen.getByRole("button", { name: "Copy link" }));
|
||||
expect(onDismiss).toBeCalled();
|
||||
});
|
||||
|
||||
@@ -66,8 +66,6 @@ describe("VideoPreview", () => {
|
||||
children={<></>}
|
||||
/>,
|
||||
);
|
||||
expect(queryByRole("status")).toHaveTextContent(
|
||||
"video_tile.camera_starting",
|
||||
);
|
||||
expect(queryByRole("status")).toHaveTextContent("Video loading...");
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user