mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 08:13:28 +08:00
36 lines
647 B
JavaScript
36 lines
647 B
JavaScript
const babelOptions = require('./package.json').babel;
|
|
|
|
module.exports = function (wallaby) {
|
|
return {
|
|
env: {
|
|
type: 'node',
|
|
runner: 'node'
|
|
},
|
|
|
|
testFramework: 'jest',
|
|
|
|
files: [
|
|
'package.json',
|
|
'lib/src/**/*.js',
|
|
'lib/src/**/*.ts',
|
|
'lib/src/**/*.tsx'
|
|
],
|
|
|
|
tests: [
|
|
'test/**/*.spec.js'
|
|
],
|
|
|
|
compilers: {
|
|
'**/*.js': wallaby.compilers.babel(babelOptions),
|
|
'**/*.ts?(x)': wallaby.compilers.typeScript({
|
|
module: 'commonjs',
|
|
jsx: 'React'
|
|
})
|
|
},
|
|
|
|
setup: (w) => {
|
|
w.testFramework.configure(require('./package.json').jest);
|
|
}
|
|
};
|
|
};
|