coronamap/node_modules/tape/test/subcount.js
2020-06-14 00:00:00 -07:00

14 lines
277 B
JavaScript

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');
});
});