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();
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();
expect(wrapper).toMatchSnapshot();
});
});