You are here

protected function InvoiceTypeTest::getAdministratorPermissions in Commerce Invoice 8.2

Gets the permissions for the admin user.

Return value

string[] The permissions.

Overrides CommerceWebDriverTestBase::getAdministratorPermissions

File

tests/src/FunctionalJavascript/InvoiceTypeTest.php, line 28

Class

InvoiceTypeTest
Tests the invoice type UI.

Namespace

Drupal\Tests\commerce_invoice\FunctionalJavascript

Code

protected function getAdministratorPermissions() {
  return array_merge([
    'administer commerce_invoice_type',
  ], parent::getAdministratorPermissions());
}