diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-21 21:58:58 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-21 22:02:17 +1000 |
commit | 18d4eb3eda54ee4addb42d4e68039f2016305233 (patch) | |
tree | 1a71bd84a433b493b1f9545a15e30d53d6b54181 | |
parent | 962b69b2846e01a04e0f3460d43255eec67f75a9 (diff) | |
download | fengari-18d4eb3eda54ee4addb42d4e68039f2016305233.tar.gz fengari-18d4eb3eda54ee4addb42d4e68039f2016305233.tar.bz2 fengari-18d4eb3eda54ee4addb42d4e68039f2016305233.zip |
tests/test-suite/goto.js: Now passes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | tests/test-suite/goto.js (renamed from tests/test-suite/inprogress/goto.js) | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -59,6 +59,7 @@ IRC: #fengari on freenode - [x] `closure.lua` (16/16) - [x] `constructs.lua` (`_soft`) (10/10) - [x] `events.lua` (26/26) + - [x] `goto.lua` (18/18) - [x] `literals.lua` (30/30) - [x] `locals.lua` (10/10) - [x] `nextvar.lua` (44/44) @@ -66,7 +67,6 @@ IRC: #fengari on freenode - [x] `vararg.lua` (8/8) - [ ] `coroutine.lua` (32/40) - [ ] `errors.lua` (46/64) - - [ ] `goto.lua` (16/18) - [ ] `math.lua` (44/68) - [ ] `pm.lua` (27/38) - [ ] `sort.lua` (21/24) diff --git a/tests/test-suite/inprogress/goto.js b/tests/test-suite/goto.js index c392264..c07541e 100644 --- a/tests/test-suite/inprogress/goto.js +++ b/tests/test-suite/goto.js @@ -4,9 +4,9 @@ const test = require('tape'); global.WEB = false; -const lua = require('../../../src/lua.js'); -const lauxlib = require('../../../src/lauxlib.js'); -const lualib = require('../../../src/lualib.js'); +const lua = require('../../src/lua.js'); +const lauxlib = require('../../src/lauxlib.js'); +const lualib = require('../../src/lualib.js'); test("[test-suite] goto: error messages", function (t) { |