From: Leonardo Piccioni de Almeida Date: Fri, 11 Oct 2019 19:09:57 +0000 (-0300) Subject: chore: fix typo (#216) X-Git-Tag: v3.0.0-alpha.0~487 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a371b2ec0e18fcab34b5321a1f09d47882385ba3;p=thirdparty%2Fvuejs%2Fcore.git chore: fix typo (#216) --- diff --git a/packages/runtime-core/__tests__/vnode.spec.ts b/packages/runtime-core/__tests__/vnode.spec.ts index 1e691a5fba..c2aaf21ede 100644 --- a/packages/runtime-core/__tests__/vnode.spec.ts +++ b/packages/runtime-core/__tests__/vnode.spec.ts @@ -130,9 +130,9 @@ describe('vnode', () => { // mounted VNode -> cloned VNode const mounted = createVNode('div') mounted.el = {} - const normlaized = normalizeVNode(mounted) - expect(normlaized).not.toBe(mounted) - expect(normlaized).toEqual({ ...mounted, el: null }) + const normalized = normalizeVNode(mounted) + expect(normalized).not.toBe(mounted) + expect(normalized).toEqual({ ...mounted, el: null }) // primitive types expect(normalizeVNode('foo')).toMatchObject({ type: Text, children: `foo` })