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 'test/tap/00-verify-ls-ok.js')
-rw-r--r--test/tap/00-verify-ls-ok.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/tap/00-verify-ls-ok.js b/test/tap/00-verify-ls-ok.js
index aa6acdbc5..2d20e500b 100644
--- a/test/tap/00-verify-ls-ok.js
+++ b/test/tap/00-verify-ls-ok.js
@@ -1,18 +1,18 @@
-var common = require("../common-tap")
-var test = require("tap").test
-var path = require("path")
-var cwd = path.resolve(__dirname, "..", "..")
-var fs = require("fs")
+var common = require('../common-tap')
+var test = require('tap').test
+var path = require('path')
+var cwd = path.resolve(__dirname, '..', '..')
+var fs = require('fs')
-test("npm ls in npm", function (t) {
- t.ok(fs.existsSync(cwd), "ensure that the path we are calling ls within exists")
+test('npm ls in npm', function (t) {
+ t.ok(fs.existsSync(cwd), 'ensure that the path we are calling ls within exists')
var files = fs.readdirSync(cwd)
- t.notEqual(files.length, 0, "ensure there are files in the directory we are to ls")
+ t.notEqual(files.length, 0, 'ensure there are files in the directory we are to ls')
- var opt = { cwd: cwd, stdio: [ "ignore", "ignore", 2 ] }
- common.npm(["ls"], opt, function (err, code) {
- t.ifError(err, "error should not exist")
- t.equal(code, 0, "npm ls exited with code")
+ var opt = { cwd: cwd, stdio: [ 'ignore', 'ignore', 2 ] }
+ common.npm(['ls'], opt, function (err, code) {
+ t.ifError(err, 'error should not exist')
+ t.equal(code, 0, 'npm ls exited with code')
t.end()
})
})