You are here

protected function MonitoringUiJavascriptTest::setUp in Monitoring 8

Overrides BrowserTestBase::setUp

File

tests/src/FunctionalJavascript/MonitoringUiJavascriptTest.php, line 41

Class

MonitoringUiJavascriptTest
Tests for the Monitoring UI.

Namespace

Drupal\Tests\monitoring\FunctionalJavascript

Code

protected function setUp() {
  parent::setUp();

  // Create the content type page in the setup as it is used by several tests.
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
  ));
  $this
    ->drupalPlaceBlock('local_tasks_block');
  $this
    ->drupalPlaceBlock('local_actions_block');
}