mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
* fix: fetch image resource with auth params * chore: refactor to pre-load the query params * chore: correct non-async * chore: fix mock of auth * chore: qlik/api 1.37.0
64 lines
2.1 KiB
JavaScript
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|@qlik/api)'],
|
|
moduleNameMapper: {
|
|
'd3-color': '<rootDir>/node_modules/d3-color/dist/d3-color.min.js',
|
|
},
|
|
};
|
|
|
|
export default config;
|