Sha256: 957539cc54a7dbb227b936433e9b1852bff7becc3bfca7a751ca1956c2c79f8e

Contents?: true

Size: 664 Bytes

Versions: 107

Compression:

Stored size: 664 Bytes

Contents

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

const fixtures = {
  'with props': props,
};

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

  it('componentWillUnmount should call "stopPolling"', () => {
    const stopPolling = jest.fn();
    const modifiedProps = {
      ...props,
      stopPolling,
    };
    const wrapper = shallow(<Dashboard {...modifiedProps} />);
    wrapper.unmount();
    expect(stopPolling).toBeCalled();
  });
});

Version data entries

107 entries across 107 versions & 2 rubygems

Version Path
foreman_rh_cloud-6.0.42 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.41 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.39 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.38 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-4.0.35 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.37 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.36 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.35 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.34 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.33 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-3.0.32 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-4.0.32 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.32 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-4.0.31 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.31 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.30 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-4.0.30 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-3.0.29 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-4.0.29 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js
foreman_rh_cloud-5.0.29 webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js