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

17 lines
280 B
JavaScript

// 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 ...
}