Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

test-wrapper.js 280B

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