Cleanup tests

This commit is contained in:
Jeff Avallone 2018-02-13 21:38:10 -05:00
parent 6cf064eaf0
commit bec4279c31
5 changed files with 61 additions and 53 deletions

View File

@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Message rendering 1`] = ` exports[`App rendering 1`] = `
<React.Fragment> <React.Fragment>
<Translate(Form) <Translate(Form)
downloadUrls={ downloadUrls={

View File

@ -3,9 +3,11 @@ import { shallow } from 'enzyme';
import App from 'components/App'; import App from 'components/App';
test('Message rendering', () => { describe('App', () => {
const component = shallow( test('rendering', () => {
<App/> const component = shallow(
); <App/>
expect(component).toMatchSnapshot(); );
expect(component).toMatchSnapshot();
});
}); });

View File

@ -3,11 +3,13 @@ import { shallow } from 'enzyme';
import { Footer } from 'components/Footer'; import { Footer } from 'components/Footer';
test('Footer rendering', () => { describe('Footer', () => {
const component = shallow( test('rendering', () => {
<Footer> const component = shallow(
<p>Content</p> <Footer>
</Footer> <p>Content</p>
); </Footer>
expect(component).toMatchSnapshot(); );
expect(component).toMatchSnapshot();
});
}); });

View File

@ -5,22 +5,24 @@ import { Header } from 'components/Header';
const env = { ...process.env }; const env = { ...process.env };
afterEach(() => { describe('Header', () => {
process.env = env; afterEach(() => {
}); process.env = env;
});
beforeEach(() => { beforeEach(() => {
process.env = { process.env = {
...process.env, ...process.env,
BANNER: 'testing' BANNER: 'testing'
}; };
}); });
test('Header rendering', () => { test('rendering', () => {
const component = shallow( const component = shallow(
<Header> <Header>
<p>Content</p> <p>Content</p>
</Header> </Header>
); );
expect(component).toMatchSnapshot(); expect(component).toMatchSnapshot();
});
}); });

View File

@ -3,30 +3,32 @@ import { shallow, render } from 'enzyme';
import Message from 'components/Message'; import Message from 'components/Message';
test('Message rendering', () => { describe('Message', () => {
const component = shallow( test('rendering', () => {
<Message heading="Testing" className="testing"> const component = shallow(
<p>Message content</p> <Message heading="Testing" className="testing">
</Message> <p>Message content</p>
); </Message>
expect(component).toMatchSnapshot(); );
}); expect(component).toMatchSnapshot();
});
test('Message rendering with icon', () => { test('rendering with icon', () => {
const Icon = () => 'Sample icon SVG'; const Icon = () => 'Sample icon SVG';
const component = render( const component = render(
<Message heading="Testing" icon={ Icon }> <Message heading="Testing" icon={ Icon }>
<p>Message content</p> <p>Message content</p>
</Message> </Message>
); );
expect(component).toMatchSnapshot(); expect(component).toMatchSnapshot();
}); });
test('Message rendering with type', () => { test('rendering with type', () => {
const component = render( const component = render(
<Message heading="Testing" type="error"> <Message heading="Testing" type="error">
<p>Message content</p> <p>Message content</p>
</Message> </Message>
); );
expect(component).toMatchSnapshot(); expect(component).toMatchSnapshot();
});
}); });