Create tests setup

This commit is contained in:
enzoggqs
2023-01-11 13:13:32 -03:00
parent d09f6c45cf
commit 06eac3b84c
5 changed files with 22923 additions and 169 deletions

18
babel.config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
'presets': [
['@babel/preset-env', {
modules: false
}],
],
'env': {
'test': {
'presets': [
[
'@babel/preset-env', {
'targets': { 'node': 'current' }
}
]
]
}
},
}