theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/components/common/table/formatters/__test__/selectionCellFormatter.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { selectionCellFormatter } from '../selectionCellFormatter';

describe('selectionCellFormatter', () => {
  it('render', () => {
    expect(
      selectionCellFormatter(
        { isSelected: () => true },
        { rowIndex: 'some-index' }
      )
    ).toMatchSnapshot();
  });
});