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>
24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
import _isValidPhoneNumber from './isValidPhoneNumber.js';
|
|
import metadata from '../metadata.min.json' with { type: 'json' };
|
|
function isValidPhoneNumber() {
|
|
for (var _len = arguments.length, parameters = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
parameters[_key] = arguments[_key];
|
|
}
|
|
parameters.push(metadata);
|
|
return _isValidPhoneNumber.apply(this, parameters);
|
|
}
|
|
describe('isValidPhoneNumber', function () {
|
|
it('should detect whether a phone number is valid', function () {
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35', 'RU')).to.equal(true);
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35 0', 'RU')).to.equal(false);
|
|
expect(isValidPhoneNumber('Call: 8 (800) 555 35 35', 'RU')).to.equal(false);
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35', {
|
|
defaultCountry: 'RU'
|
|
})).to.equal(true);
|
|
expect(isValidPhoneNumber('+7 (800) 555 35 35')).to.equal(true);
|
|
expect(isValidPhoneNumber('+7 1 (800) 555 35 35')).to.equal(false);
|
|
expect(isValidPhoneNumber(' +7 (800) 555 35 35')).to.equal(false);
|
|
expect(isValidPhoneNumber(' ')).to.equal(false);
|
|
});
|
|
});
|
|
//# sourceMappingURL=isValidPhoneNumber.test.js.map
|