(durationInFrames = 120)
| 1826 | } |
| 1827 | |
| 1828 | function timelineMessage(durationInFrames = 120) { |
| 1829 | return new MessageEvent("message", { |
| 1830 | source: frameWindow, |
| 1831 | data: { |
| 1832 | source: "hf-preview", |
| 1833 | type: "timeline", |
| 1834 | durationInFrames, |
| 1835 | scenes: [], |
| 1836 | }, |
| 1837 | }); |
| 1838 | } |
| 1839 | |
| 1840 | function findControlCalls(action: string) { |
| 1841 | return postSpy.mock.calls.filter((call) => { |
no outgoing calls
no test coverage detected