mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-16 16:37:47 +00:00
13 lines
302 B
PHP
13 lines
302 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
uses(Illuminate\Foundation\Testing\RefreshDatabase::class);
|
|
|
|
test('confirm password screen can be rendered', function (): void {
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->get(route('password.confirm'));
|
|
|
|
$response->assertOk();
|
|
});
|