Sha256: 70f2bb0760cc5a264a39724933e4cdf744193fba3be0e41de96ad63bef2fd5d1

Contents?: true

Size: 645 Bytes

Versions: 85

Compression:

Stored size: 645 Bytes

Contents

import { testActionSnapshotWithFixtures } from '@theforeman/test';
import { API } from 'foremanReact/redux/API';
import { fetchHits } from '../InsightsTabActions';
import { hostID, hits } from './InsightsTab.fixtures';

jest.mock('foremanReact/redux/API');
API.get.mockImplementation(async () => ({ data: { hits } }));

const fixtures = {
  'should fetchHits': () => fetchHits(hostID),
  'should fetchHits with error': () => {
    API.get.mockImplementationOnce(() =>
      Promise.reject(new Error('Network error!'))
    );
    return fetchHits(hostID);
  },
};

describe('InsightsTab actions', () => testActionSnapshotWithFixtures(fixtures));

Version data entries

85 entries across 85 versions & 1 rubygems

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