auth-api/tests/node_modules/tape/test/subcount.js

17 lines
292 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
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');
});
});