Hello, I have try to migrate project from gsap2 to gsap3. I faced with issue while run jest tests. `index.ts import { TimelineLite } from "gsap";   const timeline = new TimelineLite(); timeline.paused(true);   export const init = (fn: () => void) => { timeline.call(fn, ['123'], "label"); timeline.play(); } ` ` index.spec.ts import { init } from './index';   describe('When multiplying numbers'