coronamap/node_modules/tape/test/only4.js
2020-06-14 00:00:00 -07:00

10 lines
187 B
JavaScript

var test = require('../');
test('only4 duplicate test name', function (t) {
t.fail('not 1');
t.end();
});
test.only('only4 duplicate test name', function (t) {
t.end();
});