summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-23 00:06:43 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-23 00:53:08 +1000
commit1188498c1f714c32c287dfb657894d51c77e2c1b (patch)
tree84c54bebd786180681742bcb9c47e0a7366978f7 /tests
parentf6b260d2b97c40f360136d0c1320d8f6468f7e87 (diff)
downloadfengari-1188498c1f714c32c287dfb657894d51c77e2c1b.tar.gz
fengari-1188498c1f714c32c287dfb657894d51c77e2c1b.tar.bz2
fengari-1188498c1f714c32c287dfb657894d51c77e2c1b.zip
tests/test-suite/errors.js: un-skip test as we can now recover from a stack overflow
Diffstat (limited to 'tests')
-rw-r--r--tests/test-suite/errors.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-suite/errors.js b/tests/test-suite/errors.js
index c18adeb..47b4b2a 100644
--- a/tests/test-suite/errors.js
+++ b/tests/test-suite/errors.js
@@ -836,7 +836,7 @@ test("[test-suite] errors: testing line error", function (t) {
});
-test("[test-suite] errors: several tests that exhaust the Lua stack", { skip: true }, function (t) {
+test("[test-suite] errors: several tests that exhaust the Lua stack", function (t) {
let luaCode = `
C = 0
local l = debug.getinfo(1, "l").currentline; function y () C=C+1; y() end