Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - 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>
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
import { parseRFC3966, formatRFC3966 } from './RFC3966.js';
|
|
describe('RFC3966', function () {
|
|
it('should format', function () {
|
|
expect(function () {
|
|
return formatRFC3966({
|
|
number: '123'
|
|
});
|
|
}).to["throw"]('expects "number" to be in E.164 format');
|
|
expect(formatRFC3966({})).to.equal('');
|
|
expect(formatRFC3966({
|
|
number: '+78005553535'
|
|
})).to.equal('tel:+78005553535');
|
|
expect(formatRFC3966({
|
|
number: '+78005553535',
|
|
ext: '123'
|
|
})).to.equal('tel:+78005553535;ext=123');
|
|
});
|
|
it('should parse', function () {
|
|
expect(parseRFC3966('tel:+78005553535')).to.deep.equal({
|
|
number: '+78005553535'
|
|
});
|
|
expect(parseRFC3966('tel:+78005553535;ext=123')).to.deep.equal({
|
|
number: '+78005553535',
|
|
ext: '123'
|
|
});
|
|
|
|
// With `phone-context`
|
|
expect(parseRFC3966('tel:8005553535;ext=123;phone-context=+7')).to.deep.equal({
|
|
number: '+78005553535',
|
|
ext: '123'
|
|
});
|
|
|
|
// "Domain contexts" are ignored
|
|
expect(parseRFC3966('tel:8005553535;ext=123;phone-context=www.leningrad.spb.ru')).to.deep.equal({
|
|
number: '8005553535',
|
|
ext: '123'
|
|
});
|
|
|
|
// Not a viable phone number.
|
|
expect(parseRFC3966('tel:3')).to.deep.equal({});
|
|
});
|
|
});
|
|
//# sourceMappingURL=RFC3966.test.js.map
|