coronamap/node_modules/tape/test/only5.js
2022-08-06 08:12:21 -07:00

10 lines
187 B
JavaScript

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();
});