import {mountWithTheme} from 'sentry-test/enzyme';
import SplitDiff from 'app/components/splitDiff';
describe('SplitDiff', function () {
beforeEach(function () {});
afterEach(function () {});
it('renders', function () {
const wrapper = mountWithTheme();
expect(wrapper).toSnapshot();
});
it('renders with newlines', function () {
const base = `this is my restaurant
and restaurant
common`;
const target = `aura
and your aura
common`;
const wrapper = mountWithTheme();
expect(wrapper).toSnapshot();
});
});