node/deps/npm/node_modules/glob/test/zz-cleanup.js
2012-07-13 12:08:17 -07:00

12 lines
251 B
JavaScript

// 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()
})
})