aboutsummaryrefslogtreecommitdiff
path: root/tests/Feature/ExampleTest.php
blob: 8b5843f49c6e2be405864955f43d04d217db03c9 (plain)
1
2
3
4
5
6
7
<?php

it('returns a successful response', function () {
    $response = $this->get('/');

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