function ContentTranslationContextualLinksTest::setUp

Overrides BrowserTestBase::setUp

File

core/modules/content_translation/tests/src/FunctionalJavascript/ContentTranslationContextualLinksTest.php, line 37

Class

ContentTranslationContextualLinksTest
Tests that contextual links are available for content translation.

Namespace

Drupal\Tests\content_translation\FunctionalJavascript

Code

protected function setUp() : void {
  parent::setUp();
  // Set up an additional language.
  ConfigurableLanguage::createFromLangcode('es')->save();
  // Create a content type.
  $this->drupalCreateContentType([
    'type' => 'page',
  ]);
  // Enable content translation.
  $content_translation_manager = $this->container
    ->get('content_translation.manager');
  $content_translation_manager->setEnabled('node', 'page', TRUE);
  $this->rebuildContainer();
  // Create a translator user.
  $permissions = [
    'access contextual links',
    'administer nodes',
    'edit any page content',
    'translate any entity',
  ];
  $this->translator = $this->drupalCreateUser($permissions);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.