coronamap/node_modules/tape/test/exit/second.js
2022-08-06 08:09:54 -07:00

11 lines
161 B
JavaScript

var test = require('../../');
test('first', function (t) {
t.plan(1);
t.ok(true);
});
test('second', function (t) {
t.plan(2);
t.ok(true);
});