theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/components/ExternalLogout/__tests__/ExternalLogout.test.js

Summary

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

const fixtures = {
  'renders ExternalLogout': props,
};
describe('ExternalLogout', () => {
  describe('rendering', () => {
    testComponentSnapshotsWithFixtures(ExternalLogout, fixtures);
  });
});