diff --git a/Objects/tests/TestInterpreter.cpp b/Objects/tests/TestInterpreter.cpp index a218f05..2e0dc42 100644 --- a/Objects/tests/TestInterpreter.cpp +++ b/Objects/tests/TestInterpreter.cpp @@ -41,7 +41,7 @@ if (i == 10) { )"; auto script = R"( - var i = 10; + var i = false; print i; )"; diff --git a/Objects/tests/Tests.cpp b/Objects/tests/Tests.cpp index 80e1230..d5bcbcd 100644 --- a/Objects/tests/Tests.cpp +++ b/Objects/tests/Tests.cpp @@ -18,10 +18,10 @@ int main() { if (module.initialize()) { - testParser(); + // testParser(); // testCore(); // testPrimitives(); - // testInterpreter(); + testInterpreter(); module.deinitialize(); }