movie-night-nuevo/tests/Feature/MoviesTest.php

7 lines
130 B
PHP
Raw Normal View History

2025-12-12 23:07:04 -06:00
<?php
test('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});