UNPKG

279 BJavaScriptView Raw
1// Example of wrapper function that would invoke tape
2module.exports = function (testCase) {
3 return function (t) {
4 setUp();
5 testCase(t);
6 tearDown();
7 };
8}
9
10function setUp() {
11 // ... example ...
12}
13
14function tearDown() {
15 // ... example ...
16}