remove tail call exec test

This commit is contained in:
Sebastian McKenzie
2015-02-07 23:52:41 +11:00
parent 8a143bf957
commit 689ce048e6

View File

@@ -1,9 +0,0 @@
var timeLimit = Date.now() + 5000;
assert.equal((function f(n) {
assert.operator(Date.now(), '<', timeLimit, "Timeout");
if (n <= 0) {
return "foo";
}
return f(n - 1);
})(1e6), "foo");