Files
nebula.js/babel.config.js
Ahmad Mirzaei 5990d85a95 test: Migration to jest (#935)
* 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
2022-09-26 11:02:32 +02:00

9 lines
183 B
JavaScript

module.exports = {
env: {
test: {
presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
plugins: ['@babel/plugin-transform-react-jsx'],
},
},
};