[Pkg-javascript-commits] [node-shell-quote] 23/137: use tape everywhere

Bastien Roucariès rouca at moszumanska.debian.org
Fri Aug 25 19:19:36 UTC 2017


This is an automated email from the git hooks/post-receive script.

rouca pushed a commit to branch master
in repository node-shell-quote.

commit ed0c1c6ae383998874002ae9aa452505c266d630
Author: James Halliday <mail at substack.net>
Date:   Sun Apr 14 20:20:59 2013 -0700

    use tape everywhere
---
 package.json  | 5 +++--
 test/parse.js | 2 +-
 test/quote.js | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package.json b/package.json
index 4173bd9..e53c114 100644
--- a/package.json
+++ b/package.json
@@ -8,10 +8,11 @@
         "test" : "test"
     },
     "devDependencies" : {
-        "tap" : "~0.2.5"
+        "tap" : "~0.4.0",
+        "tape" : "~0.3.3"
     },
     "scripts" : {
-        "test" : "tap test"
+        "test" : "tap test/*.js"
     },
     "repository" : {
         "type" : "git",
diff --git a/test/parse.js b/test/parse.js
index 3eb1e27..d52b781 100644
--- a/test/parse.js
+++ b/test/parse.js
@@ -1,4 +1,4 @@
-var test = require('tap').test;
+var test = require('tape');
 var parse = require('../').parse;
 
 test('parse shell commands', function (t) {
diff --git a/test/quote.js b/test/quote.js
index 0e61b88..d6146e4 100644
--- a/test/quote.js
+++ b/test/quote.js
@@ -1,4 +1,4 @@
-var test = require('tap').test;
+var test = require('tape');
 var quote = require('../').quote;
 
 test('quote', function (t) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-shell-quote.git



More information about the Pkg-javascript-commits mailing list