import React from 'react'; import { shallow } from 'enzyme'; import toJson from 'enzyme-to-json'; import SubscriptionsPage from '../SubscriptionsPage'; import { successState, settingsSuccessState } from './subscriptions.fixtures'; import { loadSubscriptions, updateQuantity, loadTableColumns } from '../SubscriptionActions'; import { loadSetting } from '../../../move_to_foreman/Settings/SettingsActions'; import { createColumns, updateColumns } from '../../../scenes/Settings/Tables/TableActions'; jest.mock('../../../move_to_foreman/foreman_toast_notifications'); const loadTables = () => new Promise((resolve) => { resolve(); }); describe('subscriptions page', () => { const noop = () => {}; const organization = { owner_details: { upstreamConsumer: 'blah' } }; const page = shallow( {}} resetTasks={noop} uploadManifest={noop} deleteManifest={noop} refreshManifest={noop} updateSearchQuery={noop} openManageManifestModal={noop} closeManageManifestModal={noop} openDeleteModal={noop} closeDeleteModal={noop} openTaskModal={noop} closeTaskModal={noop} disableDeleteButton={noop} enableDeleteButton={noop} />); it('should render', async () => { expect(toJson(page)).toMatchSnapshot(); }); it('should poll tasks when org changes', async () => { jest.spyOn(page.instance(), 'pollTasks'); page.setProps({ organization: { id: 1 } }); expect(page.instance().pollTasks).toHaveBeenCalled(); }); });