1'use strict' 2 3const nock = require('nock') 4 5module.exports = tnock 6function tnock (t, host) { 7 const server = nock(host) 8 t.tearDown(function () { 9 server.done() 10 }) 11 return server 12} 13