summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/zz-cleanup.js
blob: c491cbf0711f1cc541f08d42199c4c45fdef93e5 (plain)
1
2
3
4
5
6
7
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()
})