michangarrito/apps/backend/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.test.js
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

18 lines
861 B
JavaScript

import extractCountryCallingCode from './extractCountryCallingCode.js';
import metadata from '../../metadata.min.json' with { type: 'json' };
describe('extractCountryCallingCode', function () {
it('should extract country calling code from a number', function () {
expect(extractCountryCallingCode('+78005553535', null, null, null, metadata)).to.deep.equal({
countryCallingCodeSource: 'FROM_NUMBER_WITH_PLUS_SIGN',
countryCallingCode: '7',
number: '8005553535'
});
expect(extractCountryCallingCode('+7800', null, null, null, metadata)).to.deep.equal({
countryCallingCodeSource: 'FROM_NUMBER_WITH_PLUS_SIGN',
countryCallingCode: '7',
number: '800'
});
expect(extractCountryCallingCode('', null, null, null, metadata)).to.deep.equal({});
});
});
//# sourceMappingURL=extractCountryCallingCode.test.js.map