You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
277 B

var test = require('tap').test
var path = require('path')
var fixtures = path.resolve(__dirname, 'fixtures')
var rimraf = require('rimraf')
test('cleanup', function(t) {
rimraf(fixtures, function(er) {
if (er)
throw er
t.pass('cleaned up')
t.end()
})
})