31 lines
2.4 KiB
Plaintext
31 lines
2.4 KiB
Plaintext
|
||
FAIL Tests\Feature\Auth\AuthenticationTest
|
||
✓ login screen can be rendered 0.52s
|
||
✓ users can authenticate using the login screen 0.09s
|
||
✓ users with two factor enabled are redirected to two factor challeng… 0.03s
|
||
✓ users can not authenticate with invalid password 0.03s
|
||
✓ users can logout 0.03s
|
||
⨯ users are rate limited 0.08s
|
||
────────────────────────────────────────────────────────────────────────────
|
||
FAILED Tests\Feature\Auth\AuthenticationTest > users are rate limited
|
||
Expected response status code [429] but received 302.
|
||
Failed asserting that 302 is identical to 429.
|
||
|
||
The following errors occurred during the last request:
|
||
|
||
These credentials do not match our records.
|
||
|
||
at tests\Feature\Auth\AuthenticationTest.php:88
|
||
84▕ 'email' => $user->email,
|
||
85▕ 'password' => 'wrong-password',
|
||
86▕ ]);
|
||
87▕
|
||
➜ 88▕ $response->assertStatus(429);
|
||
89▕ });
|
||
90▕
|
||
|
||
|
||
Tests: 1 failed, 5 passed (13 assertions)
|
||
Duration: 1.02s
|
||
|