From 2c1039f26c428dbaa0388c4d1f055b6501a79af0 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 16 Nov 2023 13:26:12 +0100 Subject: [PATCH] lint --- src/pages/index/ClickCounter.test.ts | 1 - vitest.config.ts | 9 +-------- 2 files changed, 1 insertion(+), 9 deletions(-) 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'], }, }), )