create(); $this->getAs('api/artists') ->assertJsonStructure(ArtistResource::PAGINATION_JSON_STRUCTURE); } public function testShow(): void { $this->getAs('api/artists/' . Artist::factory()->create()->id) ->assertJsonStructure(ArtistResource::JSON_STRUCTURE); } }