Skip to content

Commit 13c015d

Browse files
committed
clean tests
1 parent f138c84 commit 13c015d

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/components/nve-link-card/nve-link-card.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*import { afterEach, describe, expect, it } from 'vitest';
1+
import { afterEach, describe, expect, it } from 'vitest';
22
import { fixture, fixtureCleanup } from '@open-wc/testing';
33
import { html } from 'lit';
44
import NveLinkCard from './nve-link-card.component';
@@ -16,7 +16,7 @@ describe('nve-link-card', () => {
1616
expect(el.variant).toBe('primary');
1717
expect(el.size).toBe('medium');
1818
});
19-
it('has correct label', async () => {
19+
/*it('has correct label', async () => {
2020
const label = 'Example label';
2121
const el = await fixture<NveLinkCard>(html`<nve-link-card label=${label}></nve-link-card>`);
2222
const div = el.shadowRoot?.querySelector('div[part="label"]');
@@ -75,6 +75,5 @@ describe('nve-link-card', () => {
7575
const el = wrapper.querySelector('nve-link-card') as NveLinkCard;
7676
const linkCard = el.shadowRoot?.querySelector('[part="link-card"]');
7777
expect(linkCard?.tagName.toLowerCase()).toBe('div');
78-
});
78+
}); */
7979
});
80-
*/

0 commit comments

Comments
 (0)