test(cleanup): remove/reintorduce skipped tests (#2788)

This commit is contained in:
Erez Rokah
2019-10-23 13:22:48 +03:00
committed by GitHub
parent 76fdb93087
commit d38d4665c4
8 changed files with 648 additions and 314 deletions

View File

@ -61,25 +61,6 @@ describe('entryDraft reducer', () => {
});
});
describe('DRAFT_CHANGE', () => {
it.skip('should update the draft', () => {
const newEntry = {
...entry,
raw: 'updated',
};
expect(reducer(initialState, actions.changeDraft(newEntry))).toEqual(
fromJS({
entry: {
...entry,
raw: 'updated',
},
mediaFiles: [],
hasChanged: true,
}),
);
});
});
describe('persisting', () => {
beforeEach(() => {
initialState = fromJS({