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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/npm-registry-client/test/zz-cleanup.js')
-rw-r--r--node_modules/npm-registry-client/test/zz-cleanup.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/npm-registry-client/test/zz-cleanup.js b/node_modules/npm-registry-client/test/zz-cleanup.js
index 35253c7ac..f030b11ee 100644
--- a/node_modules/npm-registry-client/test/zz-cleanup.js
+++ b/node_modules/npm-registry-client/test/zz-cleanup.js
@@ -1,10 +1,10 @@
-var tap = require('tap')
-var rimraf = require('rimraf')
+var tap = require("tap")
+var rimraf = require("rimraf")
-tap.test('teardown', function (t) {
- rimraf(__dirname + '/fixtures/cache', function (er) {
+tap.test("teardown", function (t) {
+ rimraf(__dirname + "/fixtures/cache", function (er) {
if (er) throw er
- t.pass('cache cleaned')
+ t.pass("cache cleaned")
t.end()
})
})