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