Add markdown reducer tests
This commit is contained in:
parent
b31cf22f43
commit
eda4c7d629
1 changed files with 8 additions and 0 deletions
|
@ -32,6 +32,7 @@ describe('compose reducer', () => {
|
|||
default_sensitive: false,
|
||||
idempotencyKey: null,
|
||||
tagHistory: [],
|
||||
content_type: 'text/markdown',
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -777,4 +778,11 @@ describe('compose reducer', () => {
|
|||
// });
|
||||
// });
|
||||
|
||||
it('sets the post content-type', () => {
|
||||
const action = {
|
||||
type: actions.COMPOSE_TYPE_CHANGE,
|
||||
value: 'text/plain',
|
||||
};
|
||||
expect(reducer(undefined, action).toJS()).toMatchObject({ content_type: 'text/plain' });
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue