template-saas/apps/backend/node_modules/libphonenumber-js/source/legacy/searchNumbers.test.js
rckrdmrd 26f0e52ca7 feat: Initial commit - template-saas
Template base para proyectos SaaS multi-tenant.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React/Vite)
- apps/database (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:24 -06:00

26 lines
739 B
JavaScript

import searchNumbers from './searchNumbers.js'
import metadata from '../../metadata.min.json' with { type: 'json' }
describe('searchNumbers', () => {
it('should iterate', () => {
const expectedNumbers =[{
country : 'RU',
phone : '8005553535',
// number : '+7 (800) 555-35-35',
startsAt : 14,
endsAt : 32
}, {
country : 'US',
phone : '2133734253',
// number : '(213) 373-4253',
startsAt : 41,
endsAt : 55
}]
for (const number of searchNumbers('The number is +7 (800) 555-35-35 and not (213) 373-4253 as written in the document.', 'US', metadata)) {
expect(number).to.deep.equal(expectedNumbers.shift())
}
expect(expectedNumbers.length).to.equal(0)
})
})