feat: add country filter & fix userParams #1040
|
@ -44,7 +44,18 @@ vi.mock('vue-router', () => ({
|
||||||
vi.mock('axios');
|
vi.mock('axios');
|
||||||
|
|
||||||
vi.spyOn(useValidator, 'useValidator').mockImplementation(() => {
|
vi.spyOn(useValidator, 'useValidator').mockImplementation(() => {
|
||||||
return { validate: vi.fn() };
|
return {
|
||||||
|
|||||||
|
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 {
|
class FormDataMock {
|
||||||
|
|
Loading…
Reference in New Issue
Se rompían unos tests