plan_optional.js 283 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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: