Skip to content

Commit

Permalink
Increase the timeout on a test that often runs out of time (#1392)
Browse files Browse the repository at this point in the history
e.g. #1391
  • Loading branch information
paulmelnikow authored Dec 26, 2017
1 parent 46a05e4 commit 0a2a804
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0a2a804

Please sign in to comment.