byos_laravel/tests/Feature/ExampleTest.php
Benjamin Nussbaum b4b6286172
Some checks are pending
tests / ci (push) Waiting to run
refactor: apply rector
2025-09-24 20:35:48 +02:00

7 lines
135 B
PHP

<?php
it('returns a successful response', function (): void {
$response = $this->get('/');
$response->assertStatus(200);
});