From 7d3c71ca17ccc8f93f1e9d1cad75a3b9ec6bca12 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Wed, 26 Apr 2017 11:23:47 +0200 Subject: npm t runs test suite, removed t.comment --- tests/ltm.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'tests/ltm.js') diff --git a/tests/ltm.js b/tests/ltm.js index 64f52aa..ab68e5e 100644 --- a/tests/ltm.js +++ b/tests/ltm.js @@ -22,8 +22,6 @@ test('__index, __newindex: with actual table', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -56,8 +54,6 @@ test('__newindex: with non table', function (t) { t.plan(2); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -91,8 +87,6 @@ test('__index function in metatable', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -135,8 +129,6 @@ test('__newindex function in metatable', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -177,8 +169,6 @@ test('__index table in metatable', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -222,8 +212,6 @@ test('__newindex table in metatable', function (t) { t.plan(4); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -278,8 +266,6 @@ test('__index table with own metatable', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -333,8 +319,6 @@ test('__newindex table with own metatable', function (t) { t.plan(4); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -436,8 +420,6 @@ test('binary __xxx functions in metatable', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -490,8 +472,6 @@ test('__eq', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -530,8 +510,6 @@ test('__lt', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -570,8 +548,6 @@ test('__le', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -610,8 +586,6 @@ test('__le that uses __lt', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -654,8 +628,6 @@ test('__unm, __bnot', function (t) { t.plan(4); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -701,8 +673,6 @@ test('__len', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -742,8 +712,6 @@ test('__concat', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); @@ -783,8 +751,6 @@ test('__call', function (t) { t.plan(3); - t.comment("Running following code: \n" + luaCode); - t.doesNotThrow(function () { let bc = toByteCode(luaCode); -- cgit v1.2.3-54-g00ecf