topnotch_webshop/tests/Feature/ExampleTest.php

7 lines
130 B
PHP
Raw Normal View History

2025-03-25 15:02:34 -04:00
<?php
test('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});