libra/tests/Feature/ExampleTest.php

8 lines
141 B
PHP

<?php
test('returns a successful response', function () {
$response = $this->get(route('home'));
$response->assertStatus(200);
});