Spaces:
Paused
Paused
File size: 221 Bytes
5a81b95 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // Global test setup
beforeAll(() => {
process.env.NODE_ENV = 'test';
process.env.DB_NAME = 'widgettdc_test';
});
afterAll(() => {
// Cleanup connections
});
global.testTimeout = ms => {
jest.setTimeout(ms);
};
|