D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ebrokers.online
/
node_modules
/
libphonenumber-js
/
source
/
Filename :
getCountryCallingCode.test.js
back
Copy
import metadata from '../metadata.min.json' with { type: 'json' } import getCountryCallingCode from './getCountryCallingCode.js' describe('getCountryCallingCode', () => { it('should get country calling code', () => { expect(getCountryCallingCode('US', metadata)).to.equal('1') }) it('should throw if country is unknown', () => { expect(() => getCountryCallingCode('ZZ', metadata)).to.throw('Unknown country: ZZ') }) })