1'use strict' 2 3const spawk = require('spawk') 4 5module.exports = tspawk 6 7function tspawk (t) { 8 spawk.preventUnmatched() 9 t.teardown(function () { 10 spawk.unload() 11 }) 12 t.afterEach(function () { 13 spawk.done() 14 }) 15 return spawk 16} 17