blob: 0e1588723a01cde6fa8593f0010b35dae23c13e5 [file] [log] [blame]
var test = require('../');
test.only('only5 duplicate test name', function (t) {
t.end();
});
test('only5 duplicate test name', function (t) {
t.fail('not 2');
t.end();
});