This commit is contained in:
2025-08-22 14:11:18 -05:00
commit 3e9ca1a146
88 changed files with 14387 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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');
});
});