Browse Source

chore: fix typo in element test (#11085)

dev
hareku 5 years ago
committed by GitHub
parent
commit
841bb084ca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/unit/modules/vdom/patch/element.spec.js

2
test/unit/modules/vdom/patch/element.spec.js

@ -41,7 +41,7 @@ describe('vdom patch: element', () => {
expect(elm.innerHTML).toBe('hello world')
})
it('should create create an elements which having span and text content', () => {
it('should create an elements which having span and text content', () => {
const vnode = new VNode('div', {}, [
new VNode('span'),
createTextVNode('hello world')

Loading…
Cancel
Save