kopia lustrzana https://github.com/shoelace-style/shoelace
testing: components/tag (#949)
* add test for SlTag * add all classes (even not test relevant ones) to fix failing testspull/979/head
rodzic
3b4d0652c4
commit
119b923522
|
@ -0,0 +1,64 @@
|
|||
import { expect, fixture, html } from '@open-wc/testing';
|
||||
import sinon from 'sinon';
|
||||
import type SlTag from './tag';
|
||||
|
||||
describe('<sl-tag>', () => {
|
||||
it('should render default tag', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag>Test</sl-tag> `);
|
||||
|
||||
const base = el.shadowRoot!.querySelector<HTMLElement>('[part="base"]')!;
|
||||
|
||||
expect(el.getAttribute('size')).to.equal('medium');
|
||||
expect(base.getAttribute('class')).to.equal(' tag tag--neutral tag--medium ');
|
||||
});
|
||||
|
||||
it('should set variant by attribute', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag variant="danger">Test</sl-tag> `);
|
||||
|
||||
const base = el.shadowRoot!.querySelector<HTMLElement>('[part="base"]')!;
|
||||
|
||||
expect(base.getAttribute('class')).to.equal(' tag tag--danger tag--medium ');
|
||||
});
|
||||
|
||||
it('should set size by attribute', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag size="large">Test</sl-tag> `);
|
||||
|
||||
const base = el.shadowRoot!.querySelector<HTMLElement>('[part="base"]')!;
|
||||
|
||||
expect(base.getAttribute('class')).to.equal(' tag tag--neutral tag--large ');
|
||||
});
|
||||
|
||||
it('should set pill-attribute by attribute', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag pill>Test</sl-tag> `);
|
||||
|
||||
const base = el.shadowRoot!.querySelector<HTMLElement>('[part="base"]')!;
|
||||
|
||||
expect(base.getAttribute('class')).to.equal(' tag tag--neutral tag--medium tag--pill ');
|
||||
});
|
||||
|
||||
it('should set removable by attribute', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag removable>Test</sl-tag> `);
|
||||
|
||||
const base = el.shadowRoot!.querySelector<HTMLElement>('[part="base"]')!;
|
||||
const removeButton = el.shadowRoot!.querySelector('[part="remove-button"]');
|
||||
|
||||
expect(el.removable).to.equal(true);
|
||||
expect(base.getAttribute('class')).to.equal(' tag tag--neutral tag--medium tag--removable ');
|
||||
expect(removeButton).not.to.be.null;
|
||||
});
|
||||
|
||||
describe('removable', () => {
|
||||
it('should emit remove event when remove button clicked', async () => {
|
||||
const el = await fixture<SlTag>(html` <sl-tag removable>Test</sl-tag> `);
|
||||
|
||||
const removeButton = el.shadowRoot!.querySelector<HTMLButtonElement>('[part="remove-button"]')!;
|
||||
const spy = sinon.spy();
|
||||
|
||||
el.addEventListener('sl-remove', spy, { once: true });
|
||||
|
||||
removeButton.click();
|
||||
|
||||
expect(spy.called).to.equal(true);
|
||||
});
|
||||
});
|
||||
});
|
Ładowanie…
Reference in New Issue