node/deps/npm/node_modules/npm-registry-client/test/zz-cleanup.js

11 lines
218 B
JavaScript
Raw Normal View History

2012-07-14 02:40:38 +08:00
var tap = require('tap')
var rimraf = require('rimraf')
tap.test('teardown', function (t) {
rimraf(__dirname + '/fixtures/cache', function (er) {
if (er) throw er
t.pass('cache cleaned')
t.end()
})
})