first commit

This commit is contained in:
2026-03-11 22:04:36 +04:00
commit bae063a4fa
69 changed files with 12411 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class LandingPageTest extends TestCase
{
public function test_landing_page_loads_successfully(): void
{
$response = $this->get(route('landing.index'));
$response->assertOk();
$response->assertSee('Создать игровой аккаунт');
$response->assertSee(config('moonwell.realm.server_name'));
}
}