2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-24 22:50:34 +03:00

fix broken test

This commit is contained in:
Declan de Wet
2016-11-23 17:02:27 +02:00
parent 205938b090
commit f8aa92f690
+3 -2
View File
@@ -41,7 +41,7 @@ describe('getMetaInfo', () => {
}) })
}) })
it('returns metaInfos when used in component', () => { it('returns metaInfo when used in component', () => {
component = new Vue({ component = new Vue({
metaInfo: { metaInfo: {
title: 'Hello', title: 'Hello',
@@ -63,7 +63,8 @@ describe('getMetaInfo', () => {
link: [], link: [],
style: [], style: [],
script: [], script: [],
noscript: [] noscript: [],
__dangerouslyDisableSanitizers: []
}) })
}) })
}) })