TraceDash/tests/Feature/Auth/RegistrationTest.php

38 lines
917 B
PHP

<?php
namespace Tests\Feature\Auth;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Livewire\Volt\Volt;
use Tests\TestCase;
class RegistrationTest extends TestCase
{
use RefreshDatabase;
public function test_registration_screen_can_be_rendered(): void
{
$response = $this->get('/register');
$response
->assertSeeVolt('pages.auth.register')
->assertOk();
}
public function test_new_users_can_register(): void
{
$component = Volt::test('pages.auth.register')
->set('name', 'Test User')
->set('email', 'test@example.com')
->set('password', 'password')
->set('password_confirmation', 'password');
$component->call('register');
$component->assertRedirect(RouteServiceProvider::HOME);
$this->assertAuthenticated();
}
}