mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-25 10:00:20 -04:00
23 lines
551 B
JavaScript
23 lines
551 B
JavaScript
module.exports = {
|
|
mocha: {
|
|
timeout: 30000,
|
|
},
|
|
mocks: [],
|
|
nyc: {
|
|
exclude: [
|
|
'**/commands/**',
|
|
'**/__stories__/**',
|
|
'**/apis/nucleus/index.js',
|
|
'**/apis/locale/index.js',
|
|
'**/apis/stardust/index.js',
|
|
'**/apis/supernova/index.js',
|
|
'**/apis/theme/index.js',
|
|
'**/apis/conversion/index.js',
|
|
'**/apis/test-utils/index.js',
|
|
'**/packages/ui/icons/**/*.js', // Exclude the defined icons but test the `<SvgIcon />`
|
|
],
|
|
},
|
|
};
|
|
|
|
global.__NEBULA_DEV__ = false; // eslint-disable-line
|