You are here

public function FeatureContext::iPause in Bear 7

@When I pause

File

tests/features/bootstrap/FeatureContext.php, line 198

Class

FeatureContext
Defines application features from the specific context.

Code

public function iPause() {

  // Useful in js tests only.
  // For when you need to let drupal catch up.
  $this
    ->getSession()
    ->wait(3000, 'false');
}