UNPKG

236 BJavaScriptView Raw
1var test = require('../');
2
3test('only3 test 1', function (t) {
4 t.fail('not 1');
5 t.end();
6});
7
8test.only('only3 test 2', function (t) {
9 t.end();
10});
11
12test('only3 test 3', function (t) {
13 t.fail('not 3');
14 t.end();
15});