UNPKG

299 BJavaScriptView Raw
1'use strict';
2
3var test = require('../');
4
5test('plan should be optional', function (t) {
6 t.pass('no plan here');
7 t.end();
8});
9
10test('no plan async', function (t) {
11 setTimeout(function () {
12 t.pass('ok');
13 t.end();
14 }, 100);
15});
16
17// vim: set softtabstop=4 shiftwidth=4: