NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/subcount.js

15 lines
277 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
var test = require('../');
test('parent test', function (t) {
t.plan(2);
t.test('first child', function (t) {
t.plan(1);
t.pass('pass first child');
});
t.test(function (t) {
t.plan(1);
t.pass('pass second child');
});
});