theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/routes/common/PageLayout/components/ExportButton/__snapshots__/ExportButton.test.js.snap

Summary

Maintainability
Test Coverage
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ExportButton render with props 1`] = `
<Button
  active={false}
  block={false}
  bsClass="btn"
  bsStyle="default"
  className="export-csv"
  disabled={false}
  href="url"
  title="title info"
>
  info
</Button>
`;

exports[`ExportButton render without props 1`] = `
<Button
  active={false}
  block={false}
  bsClass="btn"
  bsStyle="default"
  className="export-csv"
  disabled={false}
  href="/?format=csv"
  title="Export to CSV"
>
  Export
</Button>
`;