<?php
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
test('', function () {
$response = $this->get('/');
$response->assertStatus(200);
});
Powered by TurnKey Linux.