You are here

public function DebugContext::wait in Lightning Core 8.2

Same name and namespace in other branches
  1. 8.5 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
  2. 8 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
  3. 8.3 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
  4. 8.4 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()

Waits a while, for debugging.

@When I wait :seconds second(s)

Parameters

int $seconds: How long to wait.

File

tests/contexts/DebugContext.behat.inc, line 32

Class

DebugContext
Contains step definitions to assist with debugging tests.

Namespace

Acquia\LightningExtension\Context

Code

public function wait($seconds) {
  sleep($seconds);
}