feat: #7087 created CardSummary test #1197

Merged
provira merged 13 commits from 7087-testCardSummary into dev 2025-01-16 06:16:46 +00:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 76968fe6bd - Show all commits

View File

@ -62,12 +62,14 @@ describe('CardSummary', () => {
});
it('should respond to prop changes and refetch data', async () => {
const newUrl = 'CardSummary/35';
const newKey = 'cardSummaryKey/35';
const fetchSpy = vi.spyOn(vm.arrayData, 'fetch');
await wrapper.setProps({ url: 'newUrl', filter: { key: 'newValue' } });
await wrapper.setProps({ url: newUrl, filter: { key: newKey } });
expect(fetchSpy).toHaveBeenCalled();
expect(vm.store.url).toBe('newUrl');
expect(vm.store.filter).toEqual({ key: 'newValue' });
expect(vm.store.url).toBe(newUrl);
expect(vm.store.filter).toEqual({ key: newKey });
});
it('should return true if route path ends with /summary' , () => {