Add jest config and export main.js

This commit is contained in:
Thomas Hughes
2019-09-20 15:29:25 -05:00
parent 97fca7f8d6
commit e87cc39944
4 changed files with 30 additions and 4 deletions

View File

@@ -44,4 +44,8 @@ async function run() {
}
}
run();
module.exports = run;
if (require.main === module) {
run();
}