You are here

public function UserPathAuthTest::setUp in JSON Web Token Authentication (JWT) 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/UserPathAuthTest.php, line 34

Class

UserPathAuthTest
Tests JWT config schema.

Namespace

Drupal\Tests\jwt\Kernel

Code

public function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', 'sequences');
  $this
    ->installEntitySchema('user');
  $this
    ->installConfig([
    'field',
    'key',
    'jwt',
    'jwt_path_auth',
    'jwt_test',
  ]);
}