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/bin.js')
-rw-r--r--test/tap/bin.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/tap/bin.js b/test/tap/bin.js
index ee4e1ff28..55ca894bb 100644
--- a/test/tap/bin.js
+++ b/test/tap/bin.js
@@ -1,17 +1,17 @@
-var path = require("path")
-var test = require("tap").test
-var common = require("../common-tap.js")
+var path = require('path')
+var test = require('tap').test
+var common = require('../common-tap.js')
var opts = { cwd: __dirname }
-var binDir = "../../node_modules/.bin"
+var binDir = '../../node_modules/.bin'
var fixture = path.resolve(__dirname, binDir)
test('npm bin', function (t) {
- common.npm(["bin"], opts, function (err, code, stdout, stderr) {
- t.ifError(err, "bin ran without issue")
- t.notOk(stderr, "should have no stderr")
- t.equal(code, 0, "exit ok")
+ common.npm(['bin'], opts, function (err, code, stdout, stderr) {
+ t.ifError(err, 'bin ran without issue')
+ t.notOk(stderr, 'should have no stderr')
+ t.equal(code, 0, 'exit ok')
var res = path.resolve(stdout)
- t.equal(res, fixture + "\n")
+ t.equal(res, fixture + '\n')
t.end()
})
})