Sha256: 00a55621e30ae0913359e8ba6e7b49d00b55e3e09b87c72baf7f3b3fd3115fc1

Contents?: true

Size: 756 Bytes

Versions: 107

Compression:

Stored size: 756 Bytes

Contents

import React from 'react';
import { mount, testComponentSnapshotsWithFixtures } from '@theforeman/test';
import NavContainer from '../NavContainer';
import { props } from '../NavContainer.fixtures';

const fixtures = {
  'render without Props': {},
  'render with Props': props,
};

describe('NavContainer', () => {
  describe('rendering', () =>
    testComponentSnapshotsWithFixtures(NavContainer, fixtures));

  it('click should call onTabClick prop', () => {
    const onTabClick = jest.fn();
    const modifiedProps = {
      ...props,
    };
    modifiedProps.items[0].onClick = onTabClick;
    const wrapper = mount(<NavContainer {...modifiedProps} />);
    wrapper.find('NavItem a').simulate('click');
    expect(onTabClick).toBeCalled();
  });
});

Version data entries

107 entries across 107 versions & 2 rubygems

Version Path
foreman_rh_cloud-11.1.0 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-10.0.3 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-11.0.3 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.59 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-11.0.2 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-11.0.1 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-11.0.0 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.58 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-10.0.2 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.57 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-10.0.1 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.56 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.55 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.54 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.53 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.52 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-8.0.52 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-9.0.51 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-8.0.51 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js
foreman_rh_cloud-7.0.48 webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js