Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/utils / __tests__ / fromStringToAddress.test.ts
Size: Mime:
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()
  })
})