ExampleTest.php 129 B

1234567
  1. <?php
  2. it('returns a successful response', function () {
  3. $response = $this->get('/');
  4. $response->assertStatus(200);
  5. });