diff --git a/packages/tooltip/test/lion-tooltip-arrow.test.js b/packages/tooltip/test/lion-tooltip-arrow.test.js index 52027908e..f7d31b5ef 100644 --- a/packages/tooltip/test/lion-tooltip-arrow.test.js +++ b/packages/tooltip/test/lion-tooltip-arrow.test.js @@ -1,5 +1,4 @@ import { expect, fixture, html } from '@open-wc/testing'; -import '../../button/lion-button.js'; import '../lion-tooltip-arrow.js'; import '../lion-tooltip.js'; @@ -7,7 +6,7 @@ describe('lion-tooltip-arrow', () => { it('has a visual "arrow" element inside the content node', async () => { const el = await fixture(html` - Tooltip button +
Hey there
@@ -21,7 +20,7 @@ describe('lion-tooltip-arrow', () => { it('reflects popper placement in its own placement property and attribute', async () => { const el = await fixture(html` - Tooltip button +
Hey there
@@ -55,7 +54,7 @@ describe('lion-tooltip-arrow', () => {
Hey there
- Tooltip button + `); diff --git a/packages/tooltip/test/lion-tooltip.test.js b/packages/tooltip/test/lion-tooltip.test.js index 76a85a67b..83151b10f 100644 --- a/packages/tooltip/test/lion-tooltip.test.js +++ b/packages/tooltip/test/lion-tooltip.test.js @@ -159,7 +159,7 @@ describe('lion-tooltip', () => { const el = await fixture(html`
Hey there
- Tooltip button +
`); await expect(el).to.be.accessible; @@ -169,7 +169,7 @@ describe('lion-tooltip', () => { const el = await fixture(html`
Hey there
- Tooltip button +
`); const invoker = el.querySelector('[slot="invoker"]');