lhl 6ff0e96ad3 8-4-1 | 1 年之前 | |
---|---|---|
.. | ||
.idea | 1 年之前 | |
.npmignore | 1 年之前 | |
.travis.yml | 1 年之前 | |
LICENSE | 1 年之前 | |
Makefile | 1 年之前 | |
README.md | 1 年之前 | |
index.js | 1 年之前 | |
package.json | 1 年之前 | |
test.js | 1 年之前 |
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