(type: '2d')
| 30 | class MockCanvas { |
| 31 | constructor(public width: number, public height: number) {} |
| 32 | getContext(type: '2d'): MockContext { |
| 33 | return new MockContext(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | describe('tf.browser.fromPixels with polyfills', () => { |
no outgoing calls
no test coverage detected