Files
KarbonDatacenter/tests/Feature/ExampleTest.php
2026-06-24 20:32:14 +08:00

21 lines
467 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_the_application_returns_a_successful_response(): void
{
// Halaman utama mengalihkan ke papan pemuka (yang seterusnya menuntut log masuk).
$response = $this->get('/');
$response->assertRedirect(route('dashboard'));
}
}