test('does not add ellipsis to short text', () => {
    let component = mount(<Truncated text="Short" limit={20} />)
    expect(component.text()).toBe('Short')
  })