mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-17 22:33:40 +02:00
11 lines
251 B
JavaScript
11 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()
|
|
})
|
|
})
|