tnock.js 190 B

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