sodiumjs
Version:
A Functional Reactive Programming (FRP) library for JavaScript
29 lines (24 loc) • 680 B
JavaScript
module.exports = function (wallaby) {
var path = require('path');
return {
files: [
'src/**/*.ts?(x)',
'src/**/*.snap',
'!src/**/*.spec.ts?(x)'
],
tests: [
'src/**/*.spec.ts?(x)'
],
env: {
type: 'node',
runner: 'node'
},
testFramework: 'jest',
setup: function (wallaby) {
const jestConfig = require('./package.json').jest;
jestConfig.modulePaths = jestConfig.modulePaths.map(p => p.replace('<rootDir>', wallaby.projectCacheDir));
wallaby.testFramework.configure(jestConfig);
},
debug: true
};
};