summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js')
-rw-r--r--deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js b/deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js
deleted file mode 100644
index 00b6e160..00000000
--- a/deps/node/deps/npm/node_modules/libnpmsearch/test/util/tnock.js
+++ /dev/null
@@ -1,12 +0,0 @@
-'use strict'
-
-const nock = require('nock')
-
-module.exports = tnock
-function tnock (t, host) {
- const server = nock(host)
- t.tearDown(function () {
- server.done()
- })
- return server
-}