ModusCreateOrg/budgeting

View on GitHub
app/components/Header/__tests__/Logo-test.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import renderer from 'react-test-renderer';
import Logo from '../Logo';

it('renders correctly', () => {
  const tree = renderer.create(<Logo />).toJSON();
  expect(tree).toMatchSnapshot();
});