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

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

tap.test("remove fixtures", function (t) {
  rimraf(path.resolve(__dirname, "fixtures"), function (er) {
    t.ifError(er, "remove fixtures")
    t.end()
  })
})