feat: add country filter & fix userParams #1040

Merged
jorgep merged 2 commits from hotfix-addCountryFilter into master 2024-12-03 14:18:28 +00:00
1 changed files with 12 additions and 1 deletions
Showing only changes of commit 94c0177f1b - Show all commits

View File

@ -44,7 +44,18 @@ vi.mock('vue-router', () => ({
vi.mock('axios');
vi.spyOn(useValidator, 'useValidator').mockImplementation(() => {
return { validate: vi.fn() };
return {
Review

Se rompían unos tests

Se rompían unos tests
validate: vi.fn(),
validations: () => ({
format: vi.fn(),
presence: vi.fn(),
required: vi.fn(),
length: vi.fn(),
numericality: vi.fn(),
min: vi.fn(),
custom: vi.fn(),
}),
};
});
class FormDataMock {