summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/test/zz-cleanup.js
blob: 35253c7acd722653aef4df9cd72044e6e6f44be2 (plain)
1
2
3
4
5
6
7
8
9
10
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()
  })
})