Skip to content

Commit

Permalink
chore(): add some tests, fix some error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Jul 21, 2022
1 parent dfc6774 commit e9f0922
Show file tree
Hide file tree
Showing 7 changed files with 3,583 additions and 910 deletions.
23 changes: 23 additions & 0 deletions .wallaby.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
'use strict';

module.exports = () => {
return {
env: {
type: 'node',
params: {
env: 'DEBUG=midnight-smoker'
}
},
files: [
'./src/*.js',
'package.json',
{pattern: '.husky/**/*', instrument: false}
],
testFramework: 'mocha',
tests: ['./test/*.spec.js'],
runMode: 'onsave',
setup(wallaby) {
process.env.WALLABY_PROJECT_DIR = wallaby.localProjectDir;
}
};
};
Loading

0 comments on commit e9f0922

Please sign in to comment.