Repository URL to install this package:
|
Version:
1.1.6 ▾
|
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()
})
})