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: e1020aa3b11b518ac36025d9eed39bbf56f6bd0b (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()
})