UNPKG

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