mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
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,
|
|
};
|