From 5307875595cc22aaa9aeb86fd077015f8e3f3b88 Mon Sep 17 00:00:00 2001 From: Dominic Chambers Date: Mon, 17 Nov 2014 00:19:24 +0000 Subject: [PATCH] Updated timeout so that test doesn't become a source of unreliability. --- spec/project-euler/problem10.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/project-euler/problem10.js b/spec/project-euler/problem10.js index 43aac04..1f0d13b 100644 --- a/spec/project-euler/problem10.js +++ b/spec/project-euler/problem10.js @@ -7,8 +7,7 @@ describe('Project Euler Problem #10', function() { }); it('displays the sum of all primes below 2000000', function() { - this.timeout(10000); + this.timeout(15000); primes().limit(lessThan(2000000)).sum().should.equal(142913828922); }); }); -