diff --git a/src/pages/index/ClickCounter.test.ts b/src/pages/index/ClickCounter.test.ts index 774ca64..af9a354 100644 --- a/src/pages/index/ClickCounter.test.ts +++ b/src/pages/index/ClickCounter.test.ts @@ -6,7 +6,6 @@ import ClickCounter from './ClickCounter.vue' describe('clickCounter', () => { const wrapper = mount(ClickCounter) - it('renders Button with a Counter of 0', () => { expect(wrapper.find('.v-btn').exists()).toBeTruthy() expect(wrapper.text()).toBe("$t('counter') 0") diff --git a/vitest.config.ts b/vitest.config.ts index 515c5aa..9bd0127 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -8,14 +8,7 @@ export default mergeConfig( test: { globals: true, environment: 'jsdom', - setupFiles: ['tests/mock.$t.ts', 'tests/plugin.vuetify.ts'] - /* - server: { - deps: { - inline: ['vuetify'], - }, - }, - */ + setupFiles: ['tests/mock.$t.ts', 'tests/plugin.vuetify.ts'], }, }), )