Fix tests

This commit is contained in:
Chocobozzz
2019-11-27 10:13:31 +01:00
parent a18bb55e9b
commit 2fa9c40e20
3 changed files with 8 additions and 4 deletions

View File

@@ -103,8 +103,12 @@ describe('Test application behind a reverse proxy', function () {
})
it('Should rate limit signup', async function () {
for (let i = 0; i < 3; i++) {
await registerUser(server.url, 'test' + i, 'password')
for (let i = 0; i < 10; i++) {
try {
await registerUser(server.url, 'test' + i, 'password')
} catch {
// empty
}
}
await registerUser(server.url, 'test42', 'password', 429)