auth-api/tests/node_modules/tape/test/exit/missing_end.js
2021-06-23 22:30:45 +02:00

13 lines
168 B
JavaScript

'use strict';
var test = require('../../');
test('first', function (t) {
t.ok(true);
t.end();
});
test('oops forgot end', function (t) {
t.ok(true);
});