public function DebugContext::wait in Lightning Core 8.3
Same name and namespace in other branches
- 8.5 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
- 8 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
- 8.2 tests/contexts/DebugContext.behat.inc \Acquia\LightningExtension\Context\DebugContext::wait()
- 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 33
Class
- DebugContext
- Contains step definitions to assist with debugging tests.
Namespace
Acquia\LightningExtension\ContextCode
public function wait($seconds) {
sleep($seconds);
}