This commit is contained in:
Ulf Gebhardt 2023-11-16 13:26:12 +01:00
parent 91a75b2cff
commit 2c1039f26c
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 1 additions and 9 deletions

View File

@ -6,7 +6,6 @@ import ClickCounter from './ClickCounter.vue'
describe('clickCounter', () => { describe('clickCounter', () => {
const wrapper = mount(ClickCounter) const wrapper = mount(ClickCounter)
it('renders Button with a Counter of 0', () => { it('renders Button with a Counter of 0', () => {
expect(wrapper.find('.v-btn').exists()).toBeTruthy() expect(wrapper.find('.v-btn').exists()).toBeTruthy()
expect(wrapper.text()).toBe("$t('counter') 0") expect(wrapper.text()).toBe("$t('counter') 0")

View File

@ -8,14 +8,7 @@ export default mergeConfig(
test: { test: {
globals: true, globals: true,
environment: 'jsdom', environment: 'jsdom',
setupFiles: ['tests/mock.$t.ts', 'tests/plugin.vuetify.ts'] setupFiles: ['tests/mock.$t.ts', 'tests/plugin.vuetify.ts'],
/*
server: {
deps: {
inline: ['vuetify'],
},
},
*/
}, },
}), }),
) )