Files
ISMAIL MASSERAN 6204ec0d70
Build Docker Image / build-backend (push) Successful in 11s
Build Docker Image / build-frontend (push) Failing after 31s
DONE: put hardcoded app_key for testing
2026-06-30 11:17:31 +08:00

20 lines
366 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('/');
$response->assertRedirect('/login');
}
}