aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/test/tap/zz-cleanup.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/test/tap/zz-cleanup.js')
-rw-r--r--deps/node/deps/npm/test/tap/zz-cleanup.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/deps/node/deps/npm/test/tap/zz-cleanup.js b/deps/node/deps/npm/test/tap/zz-cleanup.js
new file mode 100644
index 00000000..e1020aa3
--- /dev/null
+++ b/deps/node/deps/npm/test/tap/zz-cleanup.js
@@ -0,0 +1,8 @@
+var common = require('../common-tap')
+var test = require('tap').test
+var rimraf = require('rimraf')
+
+test('cleanup', function (t) {
+ rimraf.sync(common.npm_config_cache)
+ t.end()
+})