forgeplus-react/node_modules/tape/test/exit/second.js

14 lines
164 B
JavaScript

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