NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/plan_optional.js
2023-09-14 14:47:11 +08:00

16 lines
284 B
JavaScript

var test = require('../');
test('plan should be optional', function (t) {
t.pass('no plan here');
t.end();
});
test('no plan async', function (t) {
setTimeout(function () {
t.pass('ok');
t.end();
}, 100);
});
// vim: set softtabstop=4 shiftwidth=4: