You are here

protected function VarbaseWorkflowTest::setUp in Varbase Workflow 2.0.x

Overrides BrowserTestBase::setUp

File

tests/src/FunctionalJavascript/VarbaseWorkflowTest.php, line 47

Class

VarbaseWorkflowTest
Tests Varbase Workflow moderation test.

Namespace

Drupal\Tests\varbase_workflow\FunctionalJavascript

Code

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

  // Insall the Claro admin theme.
  $this->container
    ->get('theme_installer')
    ->install([
    'claro',
  ]);

  // Set the Claro theme as the default admin theme.
  $this
    ->config('system.theme')
    ->set('admin', 'claro')
    ->save();
  drupal_flush_all_caches();
}