Wait.js revision d0199bcbfc68b65683c19c4e3e0c38e238142e7e
/**
* Represents a stoppage in test execution to wait for an amount of time before
* continuing.
* @param {Function} segment A function to run when the wait is over.
* @param {int} delay The number of milliseconds to wait before running the code.
* @class Wait
* @namespace Test
* @constructor
*
*/
/**
* The segment of code to run when the wait is over.
* @type Function
* @property segment
*/
/**
* The delay before running the segment of code.
* @type int
* @property delay
*/
};