fix(timer-controller): Adding unit tests for startTimers()

This commit is contained in:
Chris Troutner
2023-05-09 08:06:57 -07:00
parent 9912ed7af7
commit 7d2e02fe64
@@ -56,6 +56,16 @@ describe('#Timer-Controllers', () => {
})
})
describe('#startTimers', () => {
it('should start the timers', () => {
const result = uut.startTimers()
uut.stopTimers()
assert.equal(result, true)
})
})
describe('#exampleTimerFunc', () => {
it('should kick off the Use Case', async () => {
const result = await uut.exampleTimerFunc()