()
| 36 | } |
| 37 | |
| 38 | export function createContainer() { |
| 39 | |
| 40 | const container = document.createElement('div'); |
| 41 | jest.spyOn(container, 'clientWidth', 'get').mockReturnValue(500); |
| 42 | jest.spyOn(container, 'clientHeight', 'get').mockReturnValue(500); |
| 43 | return container; |
| 44 | |
| 45 | } |
no outgoing calls
no test coverage detected