12345678910111213141516171819202122232425262728293031 |
- import React from 'react';
- import {shallow} from 'enzyme';
- import SplitDiff from 'app/components/splitDiff';
- describe('SplitDiff', function() {
- let sandbox;
- beforeEach(function() {
- sandbox = sinon.sandbox.create();
- });
- afterEach(function() {
- sandbox.restore();
- });
- it('renders', function() {
- let wrapper = shallow(<SplitDiff base="restaurant" target="aura" />);
- expect(wrapper).toMatchSnapshot();
- });
- it('renders with newlines', function() {
- let base = `this is my restaurant
- and restaurant
- common`;
- let target = `aura
- and your aura
- common`;
- let wrapper = shallow(<SplitDiff base={base} target={target} />);
- expect(wrapper).toMatchSnapshot();
- });
- });
|