mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:41:29 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
var common = require('../common-tap')
|
|
var test = require('tap').test
|
|
var rimraf = require('rimraf')
|
|
|
|
test('cleanup', function (t) {
|
|
rimraf.sync(common.npm_config_cache)
|
|
t.end()
|
|
})
|