mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:30:08 +00:00
b29290913a
Co-authored-by: Shift <shift@laravelshift.com>
20 lines
370 B
PHP
20 lines
370 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
// use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*/
|
|
public function test_the_application_returns_a_successful_response(): void
|
|
{
|
|
$response = $this->get('/admin/login');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
}
|