admin = UserFactory::refresh()->withTokens()->asAdmin()->create(); $this->user = UserFactory::refresh()->withTokens()->asUser()->create(); } public function test_index_as_admin(): void { $response = $this->actingAs($this->admin)->getJson(self::URI); $response->assertOk(); } public function test_index_as_user(): void { $response = $this->actingAs($this->user)->getJson(self::URI); $response->assertOk(); } }