Fix type in compose.test.ts
This commit is contained in:
parent
a98dfd8c11
commit
626b377371
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ describe('compose reducer', () => {
|
|||
type: ME_FETCH_SUCCESS,
|
||||
me: { pleroma: { settings_store: { soapbox_fe: { defaultPrivacy: 'unlisted' } } } },
|
||||
};
|
||||
expect(reducer(state, action).toJS().default).toMatchObject({
|
||||
expect(reducer(state, action as any).toJS().default).toMatchObject({
|
||||
privacy: 'unlisted',
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue