File size: 231 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const mockDb = require('./db');

// Wait for 15s before timing out, this is useful for e2e tests which have a tendency to time out
jest.setTimeout(30000);

// Mock the database
jest.mock('shared/db/db', () => ({
  db: mockDb,
}));