UNPKG

tape

Version:

tap-producing test harness for node and browsers

19 lines (15 loc) 265 B
'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(); }; };