NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/example/timing.js

13 lines
234 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
var test = require('../');
test('timing test', function (t) {
t.plan(2);
t.equal(typeof Date.now, 'function');
var start = new Date;
setTimeout(function () {
t.equal(new Date - start, 100);
}, 100);
});