Skip to content

Commit d071833

Browse files
committed
Handle Merge Conflicts
1 parent 660b5f7 commit d071833

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

__tests__/app/App.test.tsx

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,21 @@
11
import React from 'react';
2-
<<<<<<< HEAD
32
import ReactDOM from 'react-dom';
4-
import { shallow } from 'enzyme';
5-
=======
63
import { shallow, mount } from 'enzyme';
7-
>>>>>>> master
84
import App from '../../app/App';
9-
105
describe('<App />', () => {
116
let wrapper: any;
127

138
beforeAll(() => {
149
wrapper = shallow(<App />);
1510
});
16-
11+
it('should render <Splash /> on the first visit', () => {
12+
expect(wrapper).toBeDefined();
13+
});
1714
it('renders without crashing', () => {
1815
const div = document.createElement('div');
1916
ReactDOM.render(<App />, div);
2017
ReactDOM.unmountComponentAtNode(div);
2118
});
22-
23-
it('should render <Splash /> on the first visit', () => {
24-
expect(wrapper).toBeDefined();
25-
});
2619
it('should render <DashboardContainer /> if not on the first visit', () => {
2720
jest.useFakeTimers();
2821
wrapper = mount(<App />);

0 commit comments

Comments
 (0)