current the tests only cover the main classes, but not the integration between classes. for example adding a a new rule, the tests cover the fact the this._rules gets updated, but doesn't cover if this.twitchClient.commands and this.hapiServer.routes gets updated.
with this, probably should add a code coverage tool. i've used nyc before, so thats an option, but whatever works.
current the tests only cover the main classes, but not the integration between classes. for example adding a a new rule, the tests cover the fact the
this._rules
gets updated, but doesn't cover ifthis.twitchClient.commands
andthis.hapiServer.routes
gets updated.with this, probably should add a code coverage tool. i've used
nyc
before, so thats an option, but whatever works.