Newer
Older
FirstLaravel12 / tests / Feature / ExampleTest.php
@motoki miura motoki miura 21 days ago 140 bytes Install Pest
<?php

test('returns a successful response', function () {
    $response = $this->get(route('home'));

    $response->assertStatus(200);
});