Sha256: dbf469ae46e17c956f3c8578eef10fb83cf3d88e2991d3ac1ce7de0333732d25
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
import { testReducerSnapshotWithFixtures } from '@theforeman/test'; import { INVENTORY_ACCOUNT_STATUS_POLLING, INVENTORY_ACCOUNT_STATUS_POLLING_START, INVENTORY_ACCOUNT_STATUS_POLLING_STOP, INVENTORY_ACCOUNT_STATUS_POLLING_ERROR, INVENTORY_PROCESS_RESTART, } from '../AccountListConstants'; import reducer from '../AccountListReducer'; import { accounts, error, pollingProcessID, accountID, processStatusName, autoUploadEnabled, } from '../AccountList.fixtures'; import { AUTO_UPLOAD_TOGGLE } from '../../AutoUploadSwitcher/AutoUploadSwitcherConstants'; const fixtures = { 'should return the initial state': {}, 'should handle INVENTORY_ACCOUNT_STATUS_POLLING': { action: { type: INVENTORY_ACCOUNT_STATUS_POLLING, payload: { accounts, autoUploadEnabled, }, }, }, 'should handle INVENTORY_ACCOUNT_STATUS_POLLING_ERROR': { action: { type: INVENTORY_ACCOUNT_STATUS_POLLING_ERROR, payload: { error }, }, }, 'should handle INVENTORY_ACCOUNT_STATUS_POLLING_START': { action: { type: INVENTORY_ACCOUNT_STATUS_POLLING_START, payload: { pollingProcessID, }, }, }, 'should handle INVENTORY_ACCOUNT_STATUS_POLLING_STOP': { action: { type: INVENTORY_ACCOUNT_STATUS_POLLING_STOP, }, }, 'should handle INVENTORY_PROCESS_RESTART': { action: { type: INVENTORY_PROCESS_RESTART, payload: { accountID, processStatusName, }, }, }, 'should handle AUTO_UPLOAD_TOGGLE': { action: { type: AUTO_UPLOAD_TOGGLE, payload: { autoUploadEnabled, }, }, }, }; describe('AccountList reducer', () => testReducerSnapshotWithFixtures(reducer, fixtures));
Version data entries
3 entries across 3 versions & 1 rubygems