From 8b0c3edf32c6ea31430e8fd258fc7c8b0c75c504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20=C3=96sterlund?= Date: Thu, 30 Nov 2023 18:41:19 +0100 Subject: [PATCH] test: fix bad test naming --- tests/unit/components/Qalendar.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/components/Qalendar.test.ts b/tests/unit/components/Qalendar.test.ts index 3dec91a1..fd16ccd0 100644 --- a/tests/unit/components/Qalendar.test.ts +++ b/tests/unit/components/Qalendar.test.ts @@ -481,7 +481,7 @@ describe('Qalendar.vue', () => { expect(wrapper.vm.mode).toBe('day') }) - it('should go to invoke the goToPeriod in the header and go forward in time', () => { + it('should invoke the goToPeriod method in the header', () => { const wrapper = mount(Qalendar) const header = wrapper.findComponent({ name: 'AppHeader' }) const goToPeriodSpy = vi.spyOn(header.vm, 'goToPeriod')