Update context.js

Fix queue size
This commit is contained in:
Rob Landers 2016-09-19 15:12:33 -04:00 committed by GitHub
parent e64d86c1eb
commit c5504c4807

View File

@ -114,7 +114,7 @@ export default class TraversalContext {
// this path no longer belongs to the tree
if (path.key === null) continue;
if (testing && queue.length >= 1000) {
if (testing && queue.length >= 10000) {
this.trap = true;
}