diff --git a/app/soapbox/reducers/__tests__/patron.test.ts b/app/soapbox/reducers/__tests__/patron.test.ts deleted file mode 100644 index 4424285cd..000000000 --- a/app/soapbox/reducers/__tests__/patron.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { Record as ImmutableRecord } from 'immutable'; - -import { PATRON_ACCOUNT_FETCH_SUCCESS } from '../../actions/patron'; -import reducer from '../patron'; - -describe('patron reducer', () => { - it('should return the initial state', () => { - const result = reducer(undefined, {} as any); - expect(ImmutableRecord.isRecord(result)).toBe(true); - expect(result.instance.url).toBe(''); - }); - - describe('PATRON_ACCOUNT_FETCH_SUCCESS', () => { - it('should add the account', () => { - const action = { - type: PATRON_ACCOUNT_FETCH_SUCCESS, - account: { - url: 'https://gleasonator.com/users/alex', - is_patron: true, - }, - }; - - const result = reducer(undefined, action); - - expect(result.accounts.toJS()).toEqual({ - 'https://gleasonator.com/users/alex': { - is_patron: true, - url: 'https://gleasonator.com/users/alex', - }, - }); - }); - }); -}); diff --git a/app/soapbox/reducers/index.ts b/app/soapbox/reducers/index.ts index e2504a968..d85679c9c 100644 --- a/app/soapbox/reducers/index.ts +++ b/app/soapbox/reducers/index.ts @@ -45,7 +45,6 @@ import modals from './modals'; import mutes from './mutes'; import notifications from './notifications'; import onboarding from './onboarding'; -import patron from './patron'; import pending_statuses from './pending-statuses'; import polls from './polls'; import profile_hover_card from './profile-hover-card'; @@ -114,7 +113,6 @@ const reducers = { mutes, notifications, onboarding, - patron, pending_statuses, polls, profile_hover_card,