From 5e6a83c001a860e8d05410c04035eaa5638c6ab7 Mon Sep 17 00:00:00 2001 From: provira Date: Tue, 21 Jan 2025 14:41:28 +0100 Subject: [PATCH] fix: refs #7103 removed unused code on spies --- src/components/ui/__tests__/VnSearchbar.spec.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/components/ui/__tests__/VnSearchbar.spec.js b/src/components/ui/__tests__/VnSearchbar.spec.js index 66d6b1ad9..834fa2faf 100644 --- a/src/components/ui/__tests__/VnSearchbar.spec.js +++ b/src/components/ui/__tests__/VnSearchbar.spec.js @@ -2,9 +2,10 @@ import { vi, describe, expect, it, beforeEach } from 'vitest'; import { createWrapper } from 'app/test/vitest/helper'; import VnSearchbar from 'src/components/ui/VnSearchbar.vue'; -describe('VnSearchbar - Functions', () => { +describe('VnSearchbar', () => { let vm; let wrapper; + let applyFilterSpy; beforeEach(async () => { wrapper = createWrapper(VnSearchbar, { @@ -17,13 +18,14 @@ describe('VnSearchbar - Functions', () => { }); wrapper = wrapper.wrapper; vm = wrapper.vm; + + vm.searchText = 'Bolas de madera'; + vm.arrayData.store.userParams = { staticKey: 'staticValue' }; + applyFilterSpy = vi.spyOn(vm.arrayData, 'applyFilter').mockImplementation(() => {}); }); it('search resets pagination and applies filter', async () => { const resetPaginationSpy = vi.spyOn(vm.arrayData, 'resetPagination').mockImplementation(() => {}); - const applyFilterSpy = vi.spyOn(vm.arrayData, 'applyFilter').mockImplementation(() => Promise.resolve()); - - vm.searchText = 'Bolas de madera'; await vm.search(); expect(resetPaginationSpy).toHaveBeenCalled(); @@ -36,9 +38,6 @@ describe('VnSearchbar - Functions', () => { it('search includes static params if searchRemoveParams is false', async () => { wrapper.setProps({ searchRemoveParams: false }); await vm.$nextTick(); - const applyFilterSpy = vi.spyOn(vm.arrayData, 'applyFilter').mockImplementation(() => Promise.resolve()); - vm.arrayData.store.userParams = { staticKey: 'staticValue' }; - vm.searchText = 'Bolas de madera'; await vm.search(); expect(applyFilterSpy).toHaveBeenCalledWith({ @@ -55,12 +54,11 @@ describe('VnSearchbar - Functions', () => { }); it('computes the "to" property correctly for redirection', () => { - vm.searchText = 'testRedirect'; vm.arrayData.store.searchUrl = 'searchParam'; vm.arrayData.store.currentFilter = { category: 'plants' }; const expectedQuery = JSON.stringify({ ...vm.arrayData.store.currentFilter, - search: 'testRedirect', + search: 'Bolas de madera', }); expect(vm.to.query.searchParam).toBe(expectedQuery); });