it("needs an existing account user", function () {
\Pest\Livewire\livewire(CompleteRegistration::class)
->fillForm([
'email' => 'idontexist@example.org',
])
->call('register')
->assertRedirect(filament()->getLoginUrl());
});
it("needs an existing account user", function () {
\Pest\Livewire\livewire(CompleteRegistration::class)
->fillForm([
'email' => 'idontexist@example.org',
])
->call('register')
->assertRedirect(filament()->getLoginUrl());
});