You are here

protected function EntityBrowserIntegrationTest::setUp in Lightning Media 8.3

Same name and namespace in other branches
  1. 8.4 tests/src/Kernel/EntityBrowserIntegrationTest.php \Drupal\Tests\lightning_media\Kernel\EntityBrowserIntegrationTest::setUp()

Overrides KernelTestBase::setUp

File

tests/src/Kernel/EntityBrowserIntegrationTest.php, line 35

Class

EntityBrowserIntegrationTest
Tests Lightning Media's integration with Entity Browser.

Namespace

Drupal\Tests\lightning_media\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('system', 'key_value_expire');

  // These are two separate calls because the config must be installed in this
  // specific order for the test to pass.
  $this
    ->installConfig('node');
  $this
    ->installConfig('entity_browser_example');
}