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

zz-cleanup.js « test « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f030b11ee09d690909df27ec946e6cd312e2649a (plain)
1
2
3
4
5
6
7
8
9
10
var tap = require("tap")
var rimraf = require("rimraf")

tap.test("teardown", function (t) {
  rimraf(__dirname + "/fixtures/cache", function (er) {
    if (er) throw er
    t.pass("cache cleaned")
    t.end()
  })
})