Increase the timeout on a test that often runs out of time (#1392)

e.g. #1391
This commit is contained in:
Paul Melnikow
2017-12-26 16:24:14 -05:00
committed by GitHub
parent 46a05e42b8
commit 0a2a80415c

View File

@@ -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);