fix, testing: i18n not properly configured

This commit is contained in:
Valere
2025-03-03 14:37:29 +01:00
parent 05e81a8143
commit 4c91326edb
12 changed files with 30 additions and 42 deletions

View File

@@ -46,7 +46,7 @@ test("the modal can be closed by clicking the close button", async () => {
}
const user = userEvent.setup();
const { queryByRole, getByRole } = render(<ModalFn />);
await user.click(getByRole("button", { name: "action.close" }));
await user.click(getByRole("button", { name: "Close" }));
expect(queryByRole("dialog")).toBeNull();
});