mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-20 14:17:29 -04:00
21 lines
425 B
JavaScript
21 lines
425 B
JavaScript
/** @type { import('@jest/types').Config.InitialOptions } */
|
|
module.exports = {
|
|
globals: {
|
|
'ts-jest': {
|
|
isolatedModules: true,
|
|
},
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest',
|
|
},
|
|
testMatch: [
|
|
'**/*.test.ts',
|
|
],
|
|
verbose: false,
|
|
resetMocks: true,
|
|
resetModules: true,
|
|
collectCoverage: false,
|
|
};
|