This commit is contained in:
2019-07-06 00:36:18 +02:00
parent 4db704759e
commit baea9498be
16 changed files with 157 additions and 39 deletions

27
wallaby.js Normal file
View File

@@ -0,0 +1,27 @@
module.exports = function (wallaby) {
return {
files: [
'babel.config.js',
'packages/**/*.js',
'__mocks__/**/*.js',
'!packages/**/*.spec.js',
'!packages/demo/node_modules/**/*'
],
tests: [
'packages/lib/test/*.spec.js',
],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'**/*.js': wallaby.compilers.babel()
},
testFramework: 'jest'
};
};