| 123456789101112131415161718 |
- 'use strict';
- function setUp() {
- // ... example ...
- }
- function tearDown() {
- // ... example ...
- }
- // Example of wrapper function that would invoke tape
- module.exports = function (testCase) {
- return function (t) {
- setUp();
- testCase(t);
- tearDown();
- };
- };
|