Files
preregister/tests/Feature/ExampleTest.php

20 lines
387 B
PHP

<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_root_redirects_to_admin_dashboard(): void
{
$response = $this->get('/');
$response->assertRedirect(route('admin.dashboard', absolute: false));
}
}