function FieldTest::setUp
Overrides BrowserTestBase::setUp
File
- 
              core/modules/ views/ tests/ src/ FunctionalJavascript/ Plugin/ views/ Handler/ FieldTest.php, line 54 
Class
- FieldTest
- Tests the field handler UI.
Namespace
Drupal\Tests\views\FunctionalJavascript\Plugin\views\HandlerCode
protected function setUp() : void {
  parent::setUp();
  ViewTestData::createTestViews(static::class, [
    'views_test_config',
  ]);
  // Disable automatic live preview to make the sequence of calls clearer.
  \Drupal::configFactory()->getEditable('views.settings')
    ->set('ui.always_live_preview', FALSE)
    ->save();
  $this->account = $this->drupalCreateUser([
    'administer views',
    'access content overview',
  ]);
  $this->drupalLogin($this->account);
  NodeType::create([
    'type' => 'page',
    'name' => 'Page',
  ])->save();
  FieldConfig::create([
    'entity_type' => 'node',
    'field_name' => 'body',
    'bundle' => 'page',
  ])->save();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
