mirror of
https://github.com/react95-io/React95.git
synced 2026-01-09 22:48:00 -05:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
module.exports = {
|
|
globals: {
|
|
'ts-jest': {
|
|
diagnostics: false,
|
|
isolatedModules: true
|
|
}
|
|
},
|
|
coverageReporters: ['text', 'html'],
|
|
preset: 'ts-jest/presets/default-esm',
|
|
setupFilesAfterEnv: ['<rootDir>/test/setup-test.ts'],
|
|
testEnvironment: 'jsdom'
|
|
};
|