We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GH action
1 parent 118db70 commit efae8e7Copy full SHA for efae8e7
src/elements/hx-tooltip/index.spec.js
@@ -132,15 +132,6 @@ describe('<hx-tooltip> component tests', () => {
132
});
133
134
describe('test $onConnect method', () => {
135
- it('should have a randomly generated or assigned ID on render', async () => {
136
- const fragment = /** @type {HXTooltipElement} */ await fixture(mockup);
137
- const attr = fragment.hasAttribute('id');
138
- const tooltipId = fragment.getAttribute('id');
139
-
140
- expect(attr).to.be.true;
141
- expect(tooltipId).to.not.be.null;
142
- });
143
144
it('should have role attribute default to tooltip', async () => {
145
const roleAttr = 'tooltip';
146
const component = /** @type {HXTooltipElement} */ await fixture(template);
0 commit comments