Files
Kmake/deps/npm/test/fixtures/tspawk.js
2026-05-26 23:36:42 -07:00

17 lines
238 B
JavaScript

'use strict'
const spawk = require('spawk')
module.exports = tspawk
function tspawk (t) {
spawk.preventUnmatched()
t.teardown(function () {
spawk.unload()
})
t.afterEach(function () {
spawk.done()
})
return spawk
}