Adding some css, fix message on log in failure

This commit is contained in:
simojenki
2021-03-02 11:54:27 +11:00
parent 06024e8e36
commit ce6c1638fd
10 changed files with 63 additions and 23 deletions

View File

@@ -138,7 +138,7 @@ describe("api", () => {
.send({ username, password, linkCode })
.expect(403);
expect(res.text).toContain(`Login failed, Invalid user:${username}`);
expect(res.text).toContain(`Login failed! Invalid user:${username}`);
});
});