The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
// 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()
  })
})