mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
* jest initialised * refactor: `connect()` and `openApp()` * test: integrate to jest * chore: renaming jests test commands * chore: adding override rule for non `commands/serve` directories to skip jest rules
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
module.exports = {
|
|
env: {
|
|
test: {
|
|
presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
|
|
plugins: ['@babel/plugin-transform-react-jsx'],
|
|
},
|
|
},
|
|
};
|