function InternalEntitiesTest::jsonapiGet

Performs an authenticated request and returns the decoded document.

File

core/modules/jsonapi/tests/src/Functional/InternalEntitiesTest.php, line 188

Class

InternalEntitiesTest
Makes assertions about the JSON:API behavior for internal entities.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function jsonapiGet($path, array $options = []) {
  $this->drupalLogin($this->testUser);
  $response = $this->drupalGet($path, $options, [
    'Accept' => 'application/vnd.api+json',
  ]);
  return Json::decode($response);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.