Sha256: a8039c3d5303c398056536430b010cd779e58e4a4102c87d04d39a304425a188

Contents?: true

Size: 781 Bytes

Versions: 161

Compression:

Stored size: 781 Bytes

Contents

import { testReducerSnapshotWithFixtures } from 'react-redux-test-utils';
import {
  SYSTEM_STATUSES_FAILURE,
  SYSTEM_STATUSES_SUCCESS,
  SYSTEM_STATUSES_REQUEST,
} from '../SystemStatusesConsts';
import reducer from '../SystemStatusesReducer';
import { services } from './SystemStatuses.fixtures';

const fixtures = {
  'should return the initial state': {},
  'should return PENDING': {
    action: {
      type: SYSTEM_STATUSES_REQUEST,
    },
  },
  'should handle success': {
    action: {
      type: SYSTEM_STATUSES_SUCCESS,
      payload: { services },
    },
  },
  'should handle SYSTEM_STATUSES_FAILURE': {
    action: {
      type: SYSTEM_STATUSES_FAILURE,
    },
  },
};

describe('AutoComplete reducer', () =>
  testReducerSnapshotWithFixtures(reducer, fixtures));

Version data entries

161 entries across 161 versions & 1 rubygems

Version Path
katello-4.8.0.rc1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.3 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.2.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.0 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.0.rc2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.7.0.rc1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.4.2.2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.4.2.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.4.2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.5.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.0 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.0.rc2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.6.0.rc1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.5.0 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.5.0.rc2 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js
katello-4.4.1 webpack/components/extensions/about/__tests__/SystemStatusesReducer.test.js