Initial test setup

This commit is contained in:
2019-07-05 22:38:18 +02:00
parent 65cde5e137
commit ddfa81a458
13 changed files with 4800 additions and 34 deletions

13
tests/babel.config.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
[require.resolve('babel-plugin-module-resolver'), {
alias: {
'@babel/runtime': '../node_modules/@babel/runtime',
}
}]
]
};
};