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.
15 lines
568 B
15 lines
568 B
3 years ago
|
import extractNationalNumber from './extractNationalNumber.js'
|
||
|
|
||
|
import Metadata from '../metadata.js'
|
||
|
import oldMetadata from '../../test/metadata/1.0.0/metadata.min.json' assert { type: 'json' }
|
||
|
|
||
|
describe('extractNationalNumber', function() {
|
||
|
it('should extract a national number when using old metadata', function() {
|
||
|
const _oldMetadata = new Metadata(oldMetadata)
|
||
|
_oldMetadata.selectNumberingPlan('RU')
|
||
|
extractNationalNumber('88005553535', _oldMetadata).should.deep.equal({
|
||
|
nationalNumber: '8005553535',
|
||
|
carrierCode: undefined
|
||
|
})
|
||
|
})
|
||
|
})
|