You are here

protected function PaymentCheckoutTest::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/PaymentCheckoutTest.php, line 87

Class

PaymentCheckoutTest
Tests the integration between payments and checkout.

Namespace

Drupal\Tests\commerce_payment\FunctionalJavascript

Code

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