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

18 lines
299 B
JavaScript

'use strict';
var test = require('../');
test('plan should be optional', function (t) {
t.pass('no plan here');
t.end();
});
test('no plan async', function (t) {
setTimeout(function () {
t.pass('ok');
t.end();
}, 100);
});
// vim: set softtabstop=4 shiftwidth=4: