refactor: refs #6818 check prefix #1013

Merged
jorgep merged 8 commits from 6818-hotfix-refactorParsePhone into master 2024-12-02 10:22:21 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit c341c06170 - Show all commits

View File

@ -7,8 +7,8 @@ describe('parsePhone filter', () => {
vi.spyOn(axios, 'get').mockReturnValue({ data: { prefix: '34' } });
});
it('no phone', () => {
const phone = parsePhone(null, '34');
it('no phone', async () => {
const phone = await parsePhone(null, '34');
expect(phone).toBe(undefined);
});