protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp(): void
{ parent::
setUp();
ViewTestData::
createTestViews(self::
class,
['views_test_config'
]);
$this->
enableViewsTestModule();
$admin_user =
$this->
drupalCreateUser([ 'administer site configuration',
'administer views',
'administer nodes',
'access content overview',
]);
// Disable automatic live preview to make the sequence of calls clearer.
\Drupal::
configFactory()->
getEditable('views.settings'
)->
set('ui.always_live_preview', FALSE
)->
save();
$this->
drupalLogin($admin_user);
}