vito/tests/Feature/LogsTest.php
2024-03-24 09:56:34 +01:00

26 lines
518 B
PHP

<?php
namespace Tests\Feature;
use App\Models\ServerLog;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class LogsTest extends TestCase
{
use RefreshDatabase;
public function test_see_logs()
{
$this->actingAs($this->user);
/** @var ServerLog $log */
$log = ServerLog::factory()->create([
'server_id' => $this->server->id,
]);
$this->get(route('servers.logs', $this->server))
->assertSeeText($log->type);
}
}