Skip to content
Snippets Groups Projects
Verified Commit d4089730 authored by Sofiane Lasri's avatar Sofiane Lasri
Browse files

feat: remove ExampleTest.php file

This commit deletes the ExampleTest.php file from the tests/Feature directory, which contained a basic test for the application.
parent 095477b8
No related branches found
No related tags found
1 merge request!64feat: add database configuration management
Pipeline #1092 passed
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment