vue3-yuanma/packages/vue/__tests__/index.spec.ts

16 lines
334 B
TypeScript
Raw Normal View History

2019-09-20 12:56:02 +08:00
import { createApp } from '../src'
it('should support on-the-fly template compilation', () => {
const container = document.createElement('div')
const App = {
template: `{{ count }}`,
data() {
return {
count: 0
}
}
}
createApp().mount(App, container)
expect(container.innerHTML).toBe(`0`)
})