mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
c07702330d
* Moving entityGetter to utility folder * Import whitespace and if statement braces * newlines between multi-line if's
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
import React from 'react';
|
|
import expect from 'expect';
|
|
import { mount } from 'enzyme';
|
|
|
|
import Footer from './Footer';
|
|
|
|
describe('Footer - component', () => {
|
|
it('renders', () => {
|
|
expect(mount(<Footer />)).toExist();
|
|
});
|
|
});
|