summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/test-run-ls.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/test-run-ls.js')
-rw-r--r--deps/npm/test/tap/test-run-ls.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/deps/npm/test/tap/test-run-ls.js b/deps/npm/test/tap/test-run-ls.js
new file mode 100644
index 0000000000..4c869e5e24
--- /dev/null
+++ b/deps/npm/test/tap/test-run-ls.js
@@ -0,0 +1,33 @@
+var common = require("../common-tap.js")
+var test = require("tap").test
+var path = require("path")
+var cwd = path.resolve(__dirname, "..", "..")
+var testscript = require("../../package.json").scripts.test
+var tsregexp = testscript.replace(/([\[\.\*\]])/g, "\\$1")
+
+test("default", function (t) {
+ common.npm(["run"], { cwd: cwd }, function (er, code, so, se) {
+ if (er) throw er
+ t.notOk(code)
+ t.similar(so, new RegExp("\\n test\\n " + tsregexp + "\\n"))
+ t.end()
+ })
+})
+
+test("parseable", function (t) {
+ common.npm(["run", "-p"], { cwd: cwd }, function (er, code, so, se) {
+ if (er) throw er
+ t.notOk(code)
+ t.similar(so, new RegExp("\\ntest:" + tsregexp + "\\n"))
+ t.end()
+ })
+})
+
+test("parseable", function (t) {
+ common.npm(["run", "--json"], { cwd: cwd }, function (er, code, so, se) {
+ if (er) throw er
+ t.notOk(code)
+ t.equal(JSON.parse(so).test, testscript)
+ t.end()
+ })
+})