Welcome to mirror list, hosted at ThFree Co, Russian Federation.

00-setup.js « test « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 747768fb85f8c490ffb934c34919a13b02b2932f (plain)
1
2
3
4
5
6
7
8
9
10
var tap = require('tap')
var rimraf = require('rimraf')

tap.test('setup', function (t) {
  rimraf(__dirname + '/fixtures/cache', function (er) {
    if (er) throw er
    t.pass('cache cleaned')
    t.end()
  })
})