You are here

protected function NodeTranslationUITest::getEditorPermissions in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Functional/NodeTranslationUITest.php \Drupal\Tests\node\Functional\NodeTranslationUITest::getEditorPermissions()
  2. 10 core/modules/node/tests/src/Functional/NodeTranslationUITest.php \Drupal\Tests\node\Functional\NodeTranslationUITest::getEditorPermissions()

Returns an array of permissions needed for the editor.

Overrides ContentTranslationTestBase::getEditorPermissions

File

core/modules/node/tests/src/Functional/NodeTranslationUITest.php, line 145

Class

NodeTranslationUITest
Tests the Node Translation UI.

Namespace

Drupal\Tests\node\Functional

Code

protected function getEditorPermissions() {
  return [
    'administer nodes',
    'create article content',
  ];
}