You are here

protected function ModerationSidebarTest::setUp in Lightning Workflow 8.3

Overrides BrowserTestBase::setUp

File

tests/src/FunctionalJavascript/ModerationSidebarTest.php, line 31

Class

ModerationSidebarTest
Tests Lightning Workflow's integration with Moderation Sidebar.

Namespace

Drupal\Tests\lightning_workflow\FunctionalJavascript

Code

protected function setUp() {
  parent::setUp();
  $this
    ->drupalCreateContentType([
    'type' => 'moderated',
    'third_party_settings' => [
      'lightning_workflow' => [
        'workflow' => 'editorial',
      ],
    ],
  ]);
}