Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zz-cleanup.js « tap « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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()
})