stripIddPrefix.test.js 836 B

1234567891011121314151617
  1. import stripIddPrefix from './stripIddPrefix.js';
  2. import metadata from '../../metadata.min.json' assert { type: 'json' };
  3. describe('stripIddPrefix', function () {
  4. it('should strip a valid IDD prefix', function () {
  5. stripIddPrefix('01178005553535', 'US', '1', metadata).should.equal('78005553535');
  6. });
  7. it('should strip a valid IDD prefix (no country calling code)', function () {
  8. stripIddPrefix('011', 'US', '1', metadata).should.equal('');
  9. });
  10. it('should strip a valid IDD prefix (valid country calling code)', function () {
  11. stripIddPrefix('0117', 'US', '1', metadata).should.equal('7');
  12. });
  13. it('should strip a valid IDD prefix (not a valid country calling code)', function () {
  14. expect(stripIddPrefix('0110', 'US', '1', metadata)).to.be.undefined;
  15. });
  16. });
  17. //# sourceMappingURL=stripIddPrefix.test.js.map