getCountryCallingCode.test.js 758 B

12345678910111213141516171819
  1. "use strict";
  2. var _metadataMin = _interopRequireDefault(require("../metadata.min.json"));
  3. var _getCountryCallingCode = _interopRequireDefault(require("./getCountryCallingCode.js"));
  4. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
  5. describe('getCountryCallingCode', function () {
  6. it('should get country calling code', function () {
  7. (0, _getCountryCallingCode["default"])('US', _metadataMin["default"]).should.equal('1');
  8. });
  9. it('should throw if country is unknown', function () {
  10. expect(function () {
  11. return (0, _getCountryCallingCode["default"])('ZZ', _metadataMin["default"]);
  12. }).to["throw"]('Unknown country: ZZ');
  13. });
  14. });
  15. //# sourceMappingURL=getCountryCallingCode.test.js.map