PIMS/tests/Feature/ExampleTest.php

7 lines
140 B
PHP
Raw Permalink Normal View History

2025-12-07 03:49:26 +00:00
<?php
test('returns a successful response', function () {
$response = $this->get(route('home'));
$response->assertStatus(200);
});