function NoJavaScriptAnonymousTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php \Drupal\Tests\system\Functional\Common\NoJavaScriptAnonymousTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php, line 18

Class

NoJavaScriptAnonymousTest
Tests that anonymous users are not served any JavaScript in the Standard installation profile.

Namespace

Drupal\Tests\system\Functional\Common

Code

protected function setUp() {
    parent::setUp();
    // Grant the anonymous user the permission to look at user profiles.
    user_role_grant_permissions('anonymous', [
        'access user profiles',
    ]);
}

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