first commit
This commit is contained in:
@@ -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'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user