test('add tab object', () => {
  const { type, ...restOfProperties } = addTabAction()
  expect(Object.keys(restOfProperties)).toHaveLength(0)
  expect(type).toBe('ADD_TAB')
})