mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
Update loading-test.tsx
This commit is contained in:
parent
b0d5eb906f
commit
f659c47a61
1 changed files with 4 additions and 4 deletions
|
@ -273,7 +273,7 @@ describe("loading:", function () {
|
|||
await waitForElementToBeRemoved(() => screen.queryAllByLabelText("Loading..."));
|
||||
// we expect a single <Login> component
|
||||
await screen.findByRole("main");
|
||||
screen.getAllByText("Sign In");
|
||||
screen.getAllByText("Sign in");
|
||||
|
||||
// the only outstanding request should be a GET /login
|
||||
// (in particular there should be no /register request for
|
||||
|
@ -378,7 +378,7 @@ describe("loading:", function () {
|
|||
await awaitRoomView(matrixChat);
|
||||
|
||||
await screen.findByLabelText("Spaces");
|
||||
expect(screen.queryAllByText("Sign In")).toHaveLength(0);
|
||||
expect(screen.queryAllByText("Sign in")).toHaveLength(0);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -544,7 +544,7 @@ describe("loading:", function () {
|
|||
it("should give us a login page", async function () {
|
||||
// we expect a single <Login> component
|
||||
await screen.findByRole("main");
|
||||
screen.getAllByText("Sign In");
|
||||
screen.getAllByText("Sign in");
|
||||
|
||||
expect(windowLocation?.hash).toEqual("#/login");
|
||||
});
|
||||
|
@ -631,7 +631,7 @@ describe("loading:", function () {
|
|||
// Enter login details
|
||||
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_username")!, { target: { value: "user" } });
|
||||
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_password")!, { target: { value: "pass" } });
|
||||
fireEvent.click(screen.getByText("Sign In", { selector: ".mx_Login_submit" }));
|
||||
fireEvent.click(screen.getByText("Sign in", { selector: ".mx_Login_submit" }));
|
||||
|
||||
return httpBackend
|
||||
.flush(undefined)
|
||||
|
|
Loading…
Reference in a new issue