From 8f52e4f2ed2328195608ba253b5451feb13fc903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Droz=CC=87dz=CC=87yn=CC=81ski?= Date: Fri, 24 May 2024 19:05:51 +0200 Subject: [PATCH] Fix tests --- packages/vue/src/index.test.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/vue/src/index.test.ts b/packages/vue/src/index.test.ts index aec8a51..f08baa9 100644 --- a/packages/vue/src/index.test.ts +++ b/packages/vue/src/index.test.ts @@ -23,7 +23,7 @@ describe('createComponent', () => { global: { provide: { THEME: {}, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -77,7 +77,7 @@ describe('component', () => { global: { provide: { THEME: {}, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -108,7 +108,7 @@ describe('component', () => { THEME: { fontColor: 'green', }, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -140,7 +140,7 @@ describe('component', () => { global: { provide: { THEME: {}, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -171,7 +171,7 @@ describe('global', () => { global: { provide: { THEME: {}, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -202,7 +202,7 @@ describe('global', () => { THEME: { fontColor: 'green', }, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -233,7 +233,7 @@ describe('global', () => { global: { provide: { THEME: {}, - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -268,7 +268,7 @@ describe('ThemeProvider', () => { }, global: { provide: { - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, }) @@ -289,7 +289,7 @@ describe('ThemeProvider', () => { const wrapper = mount(layout, { global: { provide: { - styleSheet: styleSheet, + STYLE_SHEET: styleSheet, }, }, })