mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 13:33:10 +00:00
12 lines
251 B
JavaScript
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()
|
|
})
|
|
})
|