Skip to content

Commit

Permalink
chore: increase timeout for query queue tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Dec 7, 2023
1 parent 52043f2 commit 91f3d1a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export type QueryQueueTestOptions = {

export const QueryQueueTest = (name: string, options: QueryQueueTestOptions = {}) => {
describe(`QueryQueue${name}`, () => {
jest.setTimeout(10 * 1000);

const delayFn = (result, delay) => new Promise(resolve => setTimeout(() => resolve(result), delay));
const logger = jest.fn((message, event) => console.log(`${message} ${JSON.stringify(event)}`));

Expand Down

0 comments on commit 91f3d1a

Please sign in to comment.