You are here

public function ExcerptFieldTest::setUp in Search API 8

Overrides SearchApiBrowserTestBase::setUp

File

tests/src/Functional/ExcerptFieldTest.php, line 36

Class

ExcerptFieldTest
Verifies that the "Search excerpt" field in entity displays works correctly.

Namespace

Drupal\Tests\search_api\Functional

Code

public function setUp() {
  parent::setUp();
  \Drupal::getContainer()
    ->get('search_api.index_task_manager')
    ->addItemsAll(Index::load($this->indexId));
  $this
    ->insertExampleContent();
  $this
    ->indexItems($this->indexId);

  // Do not use a batch for tracking the initial items after creating an
  // index when running the tests via the GUI. Otherwise, it seems Drupal's
  // Batch API gets confused and the test fails.
  if (!Utility::isRunningInCli()) {
    \Drupal::state()
      ->set('search_api_use_tracking_batch', FALSE);
  }
}