theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/components/common/table/components/__tests__/TableSelectionCell.test.js

Summary

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

import TableSelectionCell from '../TableSelectionCell';

const fixtures = {
  'renders TableSelectionCell': {
    id: 'some id',
    label: 'some label',
    checked: true,
    onChange: jest.fn(),
  },
};

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