🎉 setup tests and add some

This commit is contained in:
Kevin Van Der Werff
2019-10-22 13:21:46 +02:00
parent bf7c412dfe
commit 4bb5fde140
6 changed files with 2874 additions and 171 deletions

16
babel.config.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
env: {
test: {
presets: [
[
"@babel/env",
{
targets: {
node: 11
}
}
]
]
}
}
};