ModusCreateOrg/budgeting

View on GitHub
app/components/GitHubButton/__tests__/index-test.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import renderer from 'react-test-renderer';
import GitHubButton from '..';

it('renders correctly', () => {
  // Set up a script tag in the document
  document.body.innerHTML = `
    <script></script>`;

  const tree = renderer.create(<GitHubButton type="Fork" />).toJSON();
  expect(tree).toMatchSnapshot();
});