mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
19 lines
299 B
TypeScript
19 lines
299 B
TypeScript
module.exports = function(w) {
|
|
return {
|
|
files: ['src/**/*.ts'],
|
|
|
|
tests: ['test/**/*.test.ts'],
|
|
|
|
env: {
|
|
type: 'node',
|
|
},
|
|
|
|
testFramework: 'mocha',
|
|
setup: function(wallaby) {
|
|
const mocha = wallaby.testFramework;
|
|
mocha.ui('tdd');
|
|
// etc.
|
|
},
|
|
};
|
|
};
|