withSession(['registration_email' => 'notice@example.com']) ->get('/register/notice') ->assertOk() ->assertSee('notice@example.com') ->assertSee('Change email'); }); it('prefills register form email from query string', function () { $this->get('/register?email=prefill@example.com') ->assertOk() ->assertSee('value="prefill@example.com"', false); }); it('blocks resend while cooldown is active', function () { Queue::fake(); User::factory()->create([ 'email' => 'cooldown@example.com', 'email_verified_at' => null, 'onboarding_step' => 'email', 'last_verification_sent_at' => now(), ]); $response = $this->from('/register/notice')->post('/register/resend-verification', [ 'email' => 'cooldown@example.com', ]); $response->assertRedirect('/register/notice'); $response->assertSessionHasNoErrors(); $response->assertSessionHas('status', 'If that email is valid, we sent a verification link.'); Queue::assertNothingPushed(); }); it('resends verification after cooldown expires', function () { Queue::fake(); User::factory()->create([ 'email' => 'resend@example.com', 'email_verified_at' => null, 'onboarding_step' => 'email', 'last_verification_sent_at' => now()->subMinutes(31), ]); $this->post('/register/resend-verification', [ 'email' => 'resend@example.com', ])->assertRedirect('/register/notice'); Queue::assertPushed(SendVerificationEmailJob::class, 1); expect(User::query()->where('email', 'resend@example.com')->exists())->toBeTrue(); });