remove tail call exec test
This commit is contained in:
@@ -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");
|
||||
Reference in New Issue
Block a user