(options: ComponentOptions)
| 8 | |
| 9 | describe('v-memo', () => { |
| 10 | function mount(options: ComponentOptions): [HTMLElement, any] { |
| 11 | const app = createApp(options) |
| 12 | const el = document.createElement('div') |
| 13 | const vm = app.mount(el) |
| 14 | return [el, vm] |
| 15 | } |
| 16 | |
| 17 | test('on with external array', async () => { |
| 18 | const [el, vm] = mount({ |
no test coverage detected