Files
nebula.js/aw.config.js
Miralem Drek 6a28ec3dd4 refactor: expose nucleus and supernova via stardust package (#415)
BREAKING CHANGE: nucleus and supernova are no longer public packages and are both replaced by stardust
2020-04-28 13:02:41 +02:00

22 lines
514 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/test-utils/index.js',
'**/packages/ui/icons/**/*.js', // Exclude the defined icons but test the `<SvgIcon />`
],
},
};
global.__NEBULA_DEV__ = false; // eslint-disable-line