more testing

This commit is contained in:
Dave Horton
2020-01-25 15:51:47 -05:00
parent 12d49a40a4
commit 0df1e44f15
9 changed files with 79 additions and 49 deletions

View File

@@ -27,6 +27,9 @@ function makeTask(logger, obj) {
case TaskName.Say:
const TaskSay = require('./say');
return new TaskSay(logger, data);
case TaskName.Play:
const TaskPlay = require('./play');
return new TaskPlay(logger, data);
case TaskName.Gather:
const TaskGather = require('./gather');
return new TaskGather(logger, data);