it('should display active count when 0', () => {
      const { output } = setup({ activeCount: 0 })
      const [count] = output.props.children
      expect(getTextContent(count)).toBe('No items left')
    })