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__ / fromDataLayerToThingList.test.ts
Size: Mime:
import 'jest'
import { fromDataLayerToThingList } from '../src'

describe('application/utils/fromDataLayerToThingList', () => {
  it('should export matching the snapshot', () => {
    const item = {
      city: 'eh',
      state: 'states',
      addressLine1: '555 moose',
      addressLine2: '10 front street',
      country: 'Canada',
      zipCode: '641654',
    }
    expect(fromDataLayerToThingList(item)).toMatchSnapshot()
  })
})