solorice/vscodium/extensions/deerawan.vscode-faker-2.0.0/wallaby.ts
2022-04-28 21:17:01 +03:00

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.
},
};
};