UNPKG

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