shoelace/src/components/input/input.test.ts

33 wiersze
1.0 KiB
TypeScript
Czysty Zwykły widok Historia

import { expect, fixture, html } from '@open-wc/testing';
2021-06-25 23:02:34 +00:00
import type SlInput from './input';
describe('<sl-input>', () => {
it('should be disabled with the disabled attribute', async () => {
2021-08-10 21:11:07 +00:00
const el = await fixture<SlInput>(html` <sl-input disabled></sl-input> `);
const input = el.shadowRoot!.querySelector<HTMLInputElement>('[part="input"]')!;
2021-06-25 23:02:34 +00:00
expect(input.disabled).to.be.true;
});
it('should be valid by default', async () => {
2021-08-10 21:11:07 +00:00
const el = await fixture<SlInput>(html` <sl-input></sl-input> `);
2021-06-25 23:02:34 +00:00
expect(el.invalid).to.be.false;
});
it('should be invalid when required and empty', async () => {
2021-08-10 21:11:07 +00:00
const el = await fixture<SlInput>(html` <sl-input required></sl-input> `);
2021-06-25 23:02:34 +00:00
expect(el.invalid).to.be.true;
});
it('should be invalid when required and after removing disabled ', async () => {
2021-08-10 21:11:07 +00:00
const el = await fixture<SlInput>(html` <sl-input disabled required></sl-input> `);
2021-06-25 23:02:34 +00:00
el.disabled = false;
await el.updateComplete;
expect(el.invalid).to.be.true;
});
});