Files
ci-electrical/web/tests/unit/utils.test.ts
2025-08-22 14:11:18 -05:00

7 lines
243 B
TypeScript

import { formatPhone } from '@/lib/utils';
import { describe, expect, it } from 'vitest';
describe('formatPhone', () => {
it('formats a raw phone string', () => {
expect(formatPhone('+1 (361) 885-0315')).toBe('(361) 885-0315');
});
});