You are here

public function TestSubContext::iWaitForSeconds in Panopoly 8.2

Same name and namespace in other branches
  1. 7 modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc \TestSubContext::iWaitForSeconds()

Wait for the given number of seconds. ONLY USE FOR DEBUGGING!

@When (I )wait( for) :seconds second(s)

File

modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc, line 643
Provide Behat step-definitions for generic Panopoly tests.

Class

TestSubContext
Behat sub-context for Panopoly.

Code

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