diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-04-26 11:23:47 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-04-26 11:41:21 +0200 |
commit | 7d3c71ca17ccc8f93f1e9d1cad75a3b9ec6bca12 (patch) | |
tree | 74316d132d4a2ea5360c776c4d0df1a6730203d7 /tests/ltm.js | |
parent | 4b4f1a19647ef71c3cb1eaa2cac4da7cfb12ef17 (diff) | |
download | fengari-7d3c71ca17ccc8f93f1e9d1cad75a3b9ec6bca12.tar.gz fengari-7d3c71ca17ccc8f93f1e9d1cad75a3b9ec6bca12.tar.bz2 fengari-7d3c71ca17ccc8f93f1e9d1cad75a3b9ec6bca12.zip |
npm t runs test suite, removed t.comment
Diffstat (limited to 'tests/ltm.js')
-rw-r--r-- | tests/ltm.js | 34 |
1 files changed, 0 insertions, 34 deletions
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); |