Files
nebula.js/jest.config.js
Tobias Åström 32d600e88b chore: convert rendering tests to es6 (#1658)
* chore: convert rendering tests to es6

* chore: fix cjs config usage

* chore: fix cjs config usage

* chore: fix verify translations

* chore: babel and jest es6

* chore: aw cjs

* chore: aw cjs

* chore: aw cjs

* chore: fix path
2024-12-30 14:40:28 +01:00

64 lines
2.1 KiB
JavaScript

const config = {
verbose: true,
clearMocks: true,
testEnvironment: 'jest-environment-jsdom',
testRegex: [
'commands/.+\\.(test|spec)\\.jsx?$',
'apis/conversion/.+\\.(test|spec)\\.jsx?$',
'apis/enigma-mocker/.+\\.(test|spec)\\.jsx?$',
'apis/locale/.+\\.(test|spec)\\.jsx?$',
'apis/nucleus/.+\\.(test|spec)\\.jsx?$',
'apis/snapshooter/.+\\.(test|spec)\\.jsx?$',
'apis/supernova/.+\\.(test|spec)\\.jsx?$',
'apis/test-utils/.+\\.(test|spec)\\.jsx?$',
'apis/theme/.+\\.(test|spec)\\.jsx?$',
'packages/ui/.+\\.(test|spec)\\.jsx?$',
],
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
collectCoverageFrom: [
'apis/conversion/**/*.{js,jsx}',
'apis/enigma-mocker/**/*.{js,jsx}',
'apis/locale/**/*.{js,jsx}',
'apis/nucleus/**/*.{js,jsx}',
'apis/snapshooter/**/*.{js,jsx}',
'apis/supernova/**/*.{js,jsx}',
'apis/test-utils/**/*.{js,jsx}',
'apis/theme/**/*.{js,jsx}',
'commands/**/*.{js,jsx}',
'packages/ui/**/*.{js,jsx}',
'!apis/enigma-mocker/examples/**',
'!apis/enigma-mocker/index.js',
'!apis/snapshooter/client.js',
'!apis/nucleus/src/flags/*',
'!apis/nucleus/src/contexts/*',
'!apis/nucleus/src/hooks/__tests__/*',
'!apis/test-utils/index.js',
'!apis/nucleus/src/components/selections/__stories__/**',
'!commands/create/**/*.{js,jsx}',
'!commands/build/command.js',
'!commands/cli/**',
'!commands/sense/command.js',
'!commands/serve/command.js',
'!commands/serve/web/components/Root.jsx',
'!commands/serve/web/components/Visualize/**',
'!commands/serve/web/contexts/**',
'!commands/sense/src/ext.js',
'!commands/sense/src/empty-ext.js',
'!**/lib/**',
'!**/dist/**',
'!**/node_modules/**',
'!**/*.config.js',
'!**/*.conf.js',
],
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
reporters: ['default', ['jest-junit', { outputDirectory: 'coverage/junit/' }]],
transformIgnorePatterns: ['/node_modules/(?!@qlik/sdk)'],
moduleNameMapper: {
'd3-color': '<rootDir>/node_modules/d3-color/dist/d3-color.min.js',
},
};
export default config;