mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
8 lines
No EOL
370 B
JavaScript
8 lines
No EOL
370 B
JavaScript
import applyInternationalSeparatorStyle from './applyInternationalSeparatorStyle'
|
|
|
|
describe('applyInternationalSeparatorStyle', () => {
|
|
it('should change Google\'s international format style', () => {
|
|
applyInternationalSeparatorStyle('(xxx) xxx-xx-xx').should.equal('xxx xxx xx xx')
|
|
applyInternationalSeparatorStyle('(xxx)xxx').should.equal('xxx xxx')
|
|
})
|
|
}) |