Files
website/tests/Feature/HomepageReachabilityTest.php

16 lines
243 B
PHP

<?php
namespace Tests\Feature;
use Tests\TestCase;
class HomepageReachabilityTest extends TestCase
{
public function test_homepage_is_reachable()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}