lhl 6ff0e96ad3 8-4-1 | il y a 1 an | |
---|---|---|
.. | ||
.idea | il y a 1 an | |
.npmignore | il y a 1 an | |
.travis.yml | il y a 1 an | |
LICENSE | il y a 1 an | |
Makefile | il y a 1 an | |
README.md | il y a 1 an | |
index.js | il y a 1 an | |
package.json | il y a 1 an | |
test.js | il y a 1 an |
sleep(time)
time - millisecond number, or '1s' which https://www.npmjs.com/package/ms support
it('should sleep', function * () {
var start = new Date();
yield sleep(30);
(new Date - start).should.aboveOrEqual(30)
})
MIT