NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/anonymous-fn/test-wrapper.js

17 lines
280 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
// Example of wrapper function that would invoke tape
module.exports = function (testCase) {
return function (t) {
setUp();
testCase(t);
tearDown();
};
};
function setUp() {
// ... example ...
}
function tearDown() {
// ... example ...
}