1.0.6 fix modifica install.php

This commit is contained in:
2026-06-03 13:32:04 +02:00
parent fcbb6fb061
commit f36a9906a2
13 changed files with 1323 additions and 238 deletions
+2 -3
View File
@@ -10,11 +10,10 @@ class ExampleTest extends TestCase
/**
* A basic test example.
*/
public function test_the_application_root_redirects_to_login(): void
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(302);
$response->assertRedirect(route('login'));
$response->assertStatus(200);
}
}