mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 01:52:03 +00:00
18 lines
480 B
JavaScript
18 lines
480 B
JavaScript
module.exports = {
|
|
runner: 'jest-electron/runner',
|
|
// testRunner: "jest-circus/runner",
|
|
// testRegex: '/__tests__/.*\\.test\\.(js|ts|mjs)$',
|
|
testRegex: '/__tests__/pivotTable.test\\.(js|ts|mjs)$',
|
|
testEnvironment: 'jest-electron/environment',
|
|
transform: {
|
|
'^.+\\.(tsx|ts)?$': 'ts-jest',
|
|
'^.+\\.css$': 'jest-transform-stub'
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'json', 'jsx'],
|
|
globals: {
|
|
'ts-jest': {
|
|
isolatedModules: false
|
|
}
|
|
}
|
|
};
|