toby/tests/Feature/InertiaTest.php
Adrian Hopek e147d24365
#23 - collective editing vacation days (#26)
* #23 - wip

* #23 - wip

* #23 - wip

* #23 - wip

* #23 - fix

* #23 - ecs fix

* #23 - fix

* #23 - fix

* #23 - cr fix
2022-01-24 11:28:00 +01:00

27 lines
567 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Inertia\Testing\AssertableInertia as Assert;
use Tests\FeatureTestCase;
use Toby\Models\User;
class InertiaTest extends FeatureTestCase
{
use DatabaseMigrations;
public function testInertia(): void
{
$user = User::factory()->create();
$response = $this->actingAs($user)
->get("/");
$response->assertOk();
$response->assertInertia(fn(Assert $page) => $page->component("Dashboard"));
}
}