mockedTimeoutClear = function()

in src/helper/timeline.ts [100:107]


mockedTimeoutClear = function (id) {
    const idx = timeoutHandlers.findIndex(handler => {
        return handler.id === id
    });
    if (idx >= 0) {
        timeoutHandlers.splice(idx, 1);
    }
}