You are here

public function TestSubContext::iWaitForSeconds in Drupal Commons 7.3

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

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

File

tests/steps/commons_test.behat.inc, line 302
Provide Behat step-definitions for generic Commons tests.

Class

TestSubContext

Code

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