summaryrefslogtreecommitdiff
path: root/tools/blog/node_modules/glob/test/zz-cleanup.js
blob: e085f0fa77e0a6ddd9c056a6c8d477edf339023b (plain)
1
2
3
4
5
6
7
8
9
10
11
// remove the fixtures
var tap = require("tap")
, rimraf = require("rimraf")
, path = require("path")

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