mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-20 14:28:57 +00:00
8 lines
129 B
PHP
8 lines
129 B
PHP
<?php
|
|
|
|
it('returns a successful response', function () {
|
|
$response = $this->get('/');
|
|
|
|
$response->assertStatus(200);
|
|
});
|