react-code-dataset / spectrum /shared /testing /setup-test-framework.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
231 Bytes
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,
}));