theforeman/foreman

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

Summary

Maintainability
A
0 mins
Test Coverage
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';

import ExportButton from './ExportButton';

const fixtures = {
  'render without props': {},
  'render with props': { url: 'url', title: 'title info', text: 'info' },
};

describe('ExportButton', () =>
  testComponentSnapshotsWithFixtures(ExportButton, fixtures));