Files
electron-universal/jest.config.js
2024-12-03 14:06:00 -08:00

15 lines
288 B
JavaScript

/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'.': [
'ts-jest',
{
tsconfig: 'tsconfig.jest.json'
}
]
},
globalSetup: './jest.setup.ts',
testTimeout: 10000,
};