mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 02:19:02 +00:00

PR-URL: https://github.com/nodejs/node/pull/25804 Reviewed-By: Myles Borins <myles.borins@gmail.com>
13 lines
190 B
JavaScript
13 lines
190 B
JavaScript
'use strict'
|
|
|
|
const nock = require('nock')
|
|
|
|
module.exports = tnock
|
|
function tnock (t, host) {
|
|
const server = nock(host)
|
|
t.tearDown(function () {
|
|
server.done()
|
|
})
|
|
return server
|
|
}
|