From 5c41b95919582999e8c2aa4dedf3c94bd8e80497 Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Wed, 11 Oct 2023 11:27:50 +1300 Subject: [PATCH] Clarify documentation note --- docs/how-to-add-a-new-event-type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to-add-a-new-event-type.md b/docs/how-to-add-a-new-event-type.md index 6304865..10beec1 100644 --- a/docs/how-to-add-a-new-event-type.md +++ b/docs/how-to-add-a-new-event-type.md @@ -337,7 +337,7 @@ index 0000000..40cc358 +module.exports.updatePins = updatePins ``` -I try to keep as much logic as possible out of the actions, meaning I never have to unit test the actions themselves, and I can skip right ahead to trying this with the real bot. +I try to keep as much logic as possible out of the actions and in the converters. This should mean I *never have to unit test the actions themselves.* The actions will be tested manually with the real bot. ## Notes on missed events