• File: tnock.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/libnpmpublish/test/util/tnock.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 190 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict'

const nock = require('nock')

module.exports = tnock
function tnock (t, host) {
  const server = nock(host)
  t.tearDown(function () {
    server.done()
  })
  return server
}