Archived
1
0

refactor: rateLimiter.canTry logic to check >= 1

This commit is contained in:
Joe Previte
2021-04-19 11:21:38 -07:00
parent 7a5042176e
commit f80d5c3764
2 changed files with 5 additions and 2 deletions

View File

@ -54,7 +54,7 @@ test.describe("login", () => {
// The current RateLimiter allows 2 logins per minute plus
// 12 logins per hour for a total of 14
// See: src/node/routes/login.ts
for (let i = 1; i <= 13; i++) {
for (let i = 1; i <= 14; i++) {
await page.click(".submit")
await page.waitForLoadState("networkidle")
// We double-check that the correct error message shows