makeTestData(); } public function testProfileDisplays() { $this->company->enable_shop_api = true; $this->company->save(); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-COMPANY-KEY' => $this->company->company_key, ])->get('/api/v1/shop/profile'); $response->assertStatus(200); $arr = $response->json(); $this->assertArrayHasKey('custom_value1', $arr['data']['settings']); $this->assertEquals($this->company->company_key, $arr['data']['company_key']); } }