(screencastApi)
| 22 | } |
| 23 | |
| 24 | function fakeHelper(screencastApi) { |
| 25 | return { |
| 26 | options: {}, |
| 27 | page: screencastApi === undefined |
| 28 | ? { screencast: makeFakeScreencast() } |
| 29 | : screencastApi === null |
| 30 | ? null |
| 31 | : { screencast: screencastApi }, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | function detachAll() { |
| 36 | for (const evt of [ |
nothing calls this directly
no test coverage detected