OasisDEX/oasis-react

View on GitHub
src/containers/OasisWrapUnwrapUnwrap.test.js

Summary

Maintainability
A
3 hrs
Test Coverage
/* global shallow describe it expect */
/* eslint-disable import/first */
import React from 'react';
import { fromJS } from 'immutable';

import {
  OasisWrapUnwrapUnwrapEther,
  mapStateToProps,
  mapDispatchToProps
} from './OasisWrapUnwrapUnwrapEther';
import { shallow } from 'enzyme';

describe('(Container) OasisWrapUnwrapUnwrap', () => {
  const state = fromJS(global.storeMock);
  const initialProps = mapStateToProps(state);
  const initialActions = mapDispatchToProps(x => x);
  const props = {
    ...initialActions,
    ...initialProps,
    hidden: false
  };

  it('will receive right props', () => {
    expect(initialProps).toMatchSnapshot();
  });


  it('will receive right actions', () => {
    expect(initialActions).toMatchSnapshot();
  });

  it('should render', () => {
    const wrapper = shallow(
      <OasisWrapUnwrapUnwrapEther {...props}/>
    );
    expect(wrapper).toMatchSnapshot();
  });

});