You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					22 lines
				
				956 B
			
		
		
			
		
	
	
					22 lines
				
				956 B
			| 
											3 years ago
										 | "use strict"; | ||
|  | 
 | ||
|  | var _extractCountryCallingCode = _interopRequireDefault(require("./extractCountryCallingCode.js")); | ||
|  | 
 | ||
|  | var _metadataMin = _interopRequireDefault(require("../../metadata.min.json")); | ||
|  | 
 | ||
|  | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } | ||
|  | 
 | ||
|  | describe('extractCountryCallingCode', function () { | ||
|  |   it('should extract country calling code from a number', function () { | ||
|  |     (0, _extractCountryCallingCode["default"])('+78005553535', null, null, _metadataMin["default"]).should.deep.equal({ | ||
|  |       countryCallingCode: '7', | ||
|  |       number: '8005553535' | ||
|  |     }); | ||
|  |     (0, _extractCountryCallingCode["default"])('+7800', null, null, _metadataMin["default"]).should.deep.equal({ | ||
|  |       countryCallingCode: '7', | ||
|  |       number: '800' | ||
|  |     }); | ||
|  |     (0, _extractCountryCallingCode["default"])('', null, null, _metadataMin["default"]).should.deep.equal({}); | ||
|  |   }); | ||
|  | }); | ||
|  | //# sourceMappingURL=extractCountryCallingCode.test.js.map
 |