Skip to content

Commit

Permalink
Extend default timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
howard-e committed Sep 26, 2023
1 parent 1ebb5bc commit 3b9c22c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server/tests/integration/dataManagement.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ const dbCleaner = require('../util/db-cleaner');
const { query, mutate } = require('../util/graphql-test-utilities');
const db = require('../../models');

beforeAll(() => {
jest.setTimeout(20000);
});

afterAll(async () => {
// Closing the DB connection allows Jest to exit successfully.
await db.sequelize.close();
Expand Down

0 comments on commit 3b9c22c

Please sign in to comment.