react-kiwi-dropdown
Version:
| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha
24 lines (23 loc) • 479 B
JavaScript
module.exports = function (wallaby) {
return {
files: [
'src/**/*.js',
'dist/**/*.js'
],
tests: [
'test/**/*.js'
],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'+(src|test)/**/*.js': wallaby.compilers.babel({
presets: ['@babel/preset-env', '@ava/babel-preset-stage-4'],
plugins: ['@babel/plugin-proposal-object-rest-spread']
})
},
testFramework: 'ava',
debug: true
}
}