(action: string)
| 1838 | } |
| 1839 | |
| 1840 | function findControlCalls(action: string) { |
| 1841 | return postSpy.mock.calls.filter((call) => { |
| 1842 | const data = call[0] as { type?: string; action?: string }; |
| 1843 | return data?.type === "control" && data?.action === action; |
| 1844 | }); |
| 1845 | } |
| 1846 | |
| 1847 | beforeEach(async () => { |
| 1848 | await import("./hyperframes-player.js"); |
no outgoing calls
no test coverage detected