Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
drozdzynski committed May 24, 2024
1 parent 5083485 commit 8f52e4f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/vue/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('createComponent', () => {
global: {
provide: {
THEME: {},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -77,7 +77,7 @@ describe('component', () => {
global: {
provide: {
THEME: {},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -108,7 +108,7 @@ describe('component', () => {
THEME: {
fontColor: 'green',
},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('component', () => {
global: {
provide: {
THEME: {},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -171,7 +171,7 @@ describe('global', () => {
global: {
provide: {
THEME: {},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -202,7 +202,7 @@ describe('global', () => {
THEME: {
fontColor: 'green',
},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -233,7 +233,7 @@ describe('global', () => {
global: {
provide: {
THEME: {},
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down Expand Up @@ -268,7 +268,7 @@ describe('ThemeProvider', () => {
},
global: {
provide: {
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand All @@ -289,7 +289,7 @@ describe('ThemeProvider', () => {
const wrapper = mount(layout, {
global: {
provide: {
styleSheet: styleSheet,
STYLE_SHEET: styleSheet,
},
},
})
Expand Down

0 comments on commit 8f52e4f

Please sign in to comment.