Skip to content

Commit

Permalink
chore: increase timeout for benchmark due to parallel testing
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondfeng committed Jun 10, 2020
1 parent d8b0f40 commit f9af11e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/src/__tests__/benchmark.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ const debug = require('debug')('test');

const DUMMY_STATS: EndpointStats = {
latency: 1,
requestsPerSecond: 1000,
requestsPerSecond: 500,
};

describe('Benchmark (SLOW)', function (this: Mocha.Suite) {
// Unfortunately, the todo app requires one second to start (or more on CI)
this.timeout(15000);
this.timeout(30000);
it('works', async () => {
const bench = new Benchmark();
bench.cannonFactory = url => new AutocannonStub(url);
Expand Down

0 comments on commit f9af11e

Please sign in to comment.