You are here

protected function CommentDisplayConfigurableTest::setUp in Drupal 10

File

core/modules/comment/tests/src/Functional/CommentDisplayConfigurableTest.php, line 23

Class

CommentDisplayConfigurableTest
Tests making comment base fields' displays configurable.

Namespace

Drupal\Tests\comment\Functional

Code

protected function setUp() : void {
  parent::setUp();

  // Allow anonymous users to see comments.
  user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
    'access comments',
    'access content',
  ]);
}