-
We moved from a very recent Jint 3 beta to the released Jint 3 and one of our unit tests failed. Our The loop is: while (true)
{
var x = 1;
} With the Jint 3 release, this test fails because the engine exceeds We've managed to fix our test by removing the variable assignment from the loop. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
If you can provide a full working test case reproducing the issue and the version it passed with, the issue might be easier to diagnose. |
Beta Was this translation helpful? Give feedback.
Conclusion: Apparently our test was purely accidentally constructed in such a way that it was really close to hitting the memory limit before the statements limit, the move to Jint 3 somehow just pushed it over the limit for most runs.