You are here

protected function PaymentGatewayFormTest::getAdministratorPermissions in Commerce Core 8.2

Gets the permissions for the admin user.

Return value

string[] The permissions.

Overrides CommerceWebDriverTestBase::getAdministratorPermissions

File

modules/payment/tests/src/FunctionalJavascript/PaymentGatewayFormTest.php, line 29

Class

PaymentGatewayFormTest
Tests the payment gateway form.

Namespace

Drupal\Tests\commerce_payment\FunctionalJavascript

Code

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