[Pkg-javascript-commits] [node-syntax-error] 23/47: labels

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


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

rouca pushed a commit to branch master
in repository node-syntax-error.

commit eaca6b51be726610dbc037bc14c8235a8a99495b
Author: James Halliday <mail at substack.net>
Date:   Sat Jul 26 14:46:43 2014 -0700

    labels
---
 test/check.js | 2 +-
 test/html.js  | 2 +-
 test/ok.js    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/check.js b/test/check.js
index 13ba960..50ae3d9 100644
--- a/test/check.js
+++ b/test/check.js
@@ -6,7 +6,7 @@ var check = require('../');
 var file = __dirname + '/sources/check.js';
 var src = fs.readFileSync(file);
 
-test(function (t) {
+test('check', function (t) {
     var err = check(src, file);
     t.ok(err);
     t.equal(err.line, 5);
diff --git a/test/html.js b/test/html.js
index 6158017..2fc0fdb 100644
--- a/test/html.js
+++ b/test/html.js
@@ -5,7 +5,7 @@ var check = require('../');
 
 var src = '<html></html>';
 
-test(function (t) {
+test('html', function (t) {
     var err = check(src, 'foo.js');
     t.ok(err);
     t.equal(err.line, 1);
diff --git a/test/ok.js b/test/ok.js
index 726cec5..b4effba 100644
--- a/test/ok.js
+++ b/test/ok.js
@@ -6,7 +6,7 @@ var check = require('../');
 var file = __dirname + '/sources/ok.js';
 var src = fs.readFileSync(file);
 
-test(function (t) {
+test('ok', function (t) {
     var err = check(src, file);
     t.notOk(err);
     t.end();

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



More information about the Pkg-javascript-commits mailing list