lhl 6ff0e96ad3 8-4-1 | há 1 ano atrás | |
---|---|---|
.. | ||
.idea | há 1 ano atrás | |
.npmignore | há 1 ano atrás | |
.travis.yml | há 1 ano atrás | |
LICENSE | há 1 ano atrás | |
Makefile | há 1 ano atrás | |
README.md | há 1 ano atrás | |
index.js | há 1 ano atrás | |
package.json | há 1 ano atrás | |
test.js | há 1 ano atrás |
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