Added wron password auth test

ref #45
This commit is contained in:
Nicolai Ort 2020-12-22 17:04:22 +01:00
parent af2744885f
commit 69796a888f
1 changed files with 7 additions and 0 deletions

View File

@ -46,4 +46,11 @@ describe('POST /api/auth/login nonexistant user', () => {
const res = await axios.post(base + '/api/auth/login', { email: "test@example.com", password: "demo" }, axios_config);
expect(res.status).toEqual(404);
});
});
// ---------------
describe('POST /api/auth/login wrong password', () => {
it('login with wrong password should return 401', async () => {
const res = await axios.post(base + '/api/auth/login', { username: "demo", password: "totallynotthecorrectpassword" }, axios_config);
expect(res.status).toEqual(401);
});
});