Closed fen9li closed 3 years ago
Hi there,
Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:
However, this issue will not be locked and everyone is still free to discuss solutions to your problem!
Thanks.
Anyone who comes across this can modify the test to this if they have teams enabled to get this to pass:
public function test_email_verification_screen_can_be_rendered()
{
if (! Features::enabled(Features::emailVerification())) {
return $this->markTestSkipped('Email verification not enabled.');
}
$user = User::factory()
->withPersonalTeam()
->create([
'email_verified_at' => null,
]);
$response = $this->actingAs($user)->get('/email/verify');
$response->assertStatus(200);
}
Description:
'tests/Feature/EmailVerificationTest.php' failed after enable email verification
Steps To Reproduce:
However, when I tried to register user manually, it works well. Please help on this. Thank you!