test('default tabs object', () => {
  const { type, ...restOfProperties } = defaultsTabsAction()
  expect(Object.keys(restOfProperties)).toHaveLength(0)
  expect(type).toBe('DEFAULTS_TABS')
})