()
| 19 | describe('htm', () => { |
| 20 | test('should cache static subtrees', () => { |
| 21 | const x = () => html`<div>a</div>`; |
| 22 | const a = x(); |
| 23 | const b = x(); |
| 24 | expect(a).toEqual({ tag: 'div', props: null, children: ['a'] }); |
no outgoing calls
no test coverage detected