From 0a2a80415cda115243a61342b06f09ebe6511e5b Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Tue, 26 Dec 2017 16:24:14 -0500 Subject: [PATCH] Increase the timeout on a test that often runs out of time (#1392) e.g. #1391 --- server.spec.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.spec.js b/server.spec.js index 1a357cdaeb80c..0bea7d6714f19 100644 --- a/server.spec.js +++ b/server.spec.js @@ -20,6 +20,8 @@ describe('The server', function () { after('Shut down the server', function () { serverHelpers.stop(server); }); it('should produce colorscheme badges', function () { + // This is the first server test to run, and often times out. + this.timeout(5000); return fetch(`${baseUri}/:fruit-apple-green.svg`) .then(res => { assert.ok(res.ok);