Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
class PostApiTest extends TestCase { use RefreshDatabase; public function test_can_create_post(): void { $user = User::factory()->create(); $this->actingAs($user, "sanctum") ->postJson("/api/posts", ["title" => "Test", "body" => "Content"]) ->assertCreated() ->assertJsonPath("data.title", "Test"); $this->assertDatabaseHas("posts", ["title" => "Test"]); } }
Result
Open