arraydiff-async
Version:
Diff two arrays, finding inserts, removes, and moves, using an asynchronous equality function
27 lines (21 loc) • 473 B
JavaScript
var Babel = require('babel');
module.exports = function (wallaby) {
return {
files: [
'*.js',
{
pattern: 'test/*.spec.js',
ignore: true
}],
tests: ['test/*.spec.js'],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'**/*.js': wallaby.compilers.babel({
babel: Babel
})
}
};
};