Files
Heimdall/tests/Feature/ImportTest.php
2025-07-15 17:04:47 +01:00

19 lines
378 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ImportTest extends TestCase
{
use RefreshDatabase;
public function test_import_page_loads_successfully(): void
{
$response = $this->get(route('items.import'));
$response->assertStatus(200);
$response->assertSee('Import');
}
}