test('findTooltip() can find a tooltip based on tooltipClassName passed to the component', async function(assert) {
    assert.expect(1);

    await render(hbs`{{ember-tooltip text='hello' tooltipClassName='ember-tooltip js-class-on-the-popper-element' isShown=true}}`);

    assertTooltipRendered(assert, { selector: '.js-class-on-the-popper-element' });
  });
  test('findTooltip() can find a tooltip based on the class passed to the component', async function(assert) {
    assert.expect(1);

    await render(hbs`{{ember-tooltip text='hello' class='js-tooltip-component-element' isShown=true}}`);

    assertTooltipRendered(assert, { selector: '.js-tooltip-component-element' });
  });