Repository URL to install this package:
|
Version:
1.1.6 ▾
|
import 'jest'
import { fromStringToAddress } from '../src'
describe('application/utils/fromStringToAddress', () => {
it('should export matching the snapshot', () => {
const address =
'John, Pancake, 10 front street, asd, coimbatore, tamilNad, india, 641041, 9875886899, john@abc.com'
expect(fromStringToAddress(address)).toMatchSnapshot()
})
})