coronamap/node_modules/tape/test/only4.js
2022-08-06 08:09:54 -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();
});