NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/only3.js
2023-09-14 14:47:11 +08:00

16 lines
236 B
JavaScript

var test = require('../');
test('only3 test 1', function (t) {
t.fail('not 1');
t.end();
});
test.only('only3 test 2', function (t) {
t.end();
});
test('only3 test 3', function (t) {
t.fail('not 3');
t.end();
});