node tests: Add explicit test for clearing input pills.

This commit is contained in:
Steve Howell
2021-02-25 16:31:33 +00:00
committed by Steve Howell
parent e53be6d043
commit 98fc28c8ed
2 changed files with 39 additions and 0 deletions

View File

@@ -221,6 +221,10 @@ exports.create = function (opts) {
return store.pills.find((pill) => pill.id === id);
},
_get_pills_for_testing() {
return store.pills;
},
items() {
return store.pills.map((pill) => pill.item);
},
@@ -393,6 +397,7 @@ exports.create = function (opts) {
clear: funcs.removeAllPills.bind(funcs),
clear_text: funcs.clear_text,
is_pending: funcs.is_pending,
_get_pills_for_testing: funcs._get_pills_for_testing,
};
return prototype;