UNPKG

@raphaeldeveloper/whoiam.domain

Version:

Project with domain rules about user authentication.

17 lines (14 loc) 280 B
// 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 ... }