diff --git a/test/short-urls/reducers/shortUrlTags.test.js b/test/short-urls/reducers/shortUrlTags.test.js index 412803d3..e5c0ea52 100644 --- a/test/short-urls/reducers/shortUrlTags.test.js +++ b/test/short-urls/reducers/shortUrlTags.test.js @@ -46,15 +46,17 @@ describe('shortUrlTagsReducer', () => { }); }); - describe('resetShortUrlsTags', () => - it('creates expected action', () => expect(resetShortUrlsTags()).toEqual({ type: RESET_EDIT_SHORT_URL_TAGS }))); + describe('resetShortUrlsTags', () => { + it('creates expected action', () => expect(resetShortUrlsTags()).toEqual({ type: RESET_EDIT_SHORT_URL_TAGS })); + }); - describe('shortUrlTagsEdited', () => + describe('shortUrlTagsEdited', () => { it('creates expected action', () => expect(shortUrlTagsEdited(shortCode, tags)).toEqual({ tags, shortCode, type: SHORT_URL_TAGS_EDITED, - }))); + })); + }); describe('editShortUrlTags', () => { const updateShortUrlTags = jest.fn(); diff --git a/test/tags/reducers/tagsList.test.js b/test/tags/reducers/tagsList.test.js index e3fe168c..cd64c151 100644 --- a/test/tags/reducers/tagsList.test.js +++ b/test/tags/reducers/tagsList.test.js @@ -70,8 +70,9 @@ describe('tagsListReducer', () => { }); }); - describe('filterTags', () => - it('creates expected action', () => expect(filterTags('foo')).toEqual({ type: FILTER_TAGS, searchTerm: 'foo' }))); + describe('filterTags', () => { + it('creates expected action', () => expect(filterTags('foo')).toEqual({ type: FILTER_TAGS, searchTerm: 'foo' })); + }); describe('listTags', () => { const dispatch = jest.fn();