remove comments

This commit is contained in:
Cory LaViska
2022-03-09 09:20:22 -05:00
parent 1819f38ccb
commit 38b0ace0ca
3 changed files with 0 additions and 12 deletions

View File

@@ -63,10 +63,6 @@ describe('<sl-input>', () => {
expect(submitHandler).to.have.been.calledOnce;
});
//
// Constraint validation tests
//
it('should be valid by default', async () => {
const el = await fixture<SlInput>(html` <sl-input></sl-input> `);
expect(el.invalid).to.be.false;

View File

@@ -93,10 +93,6 @@ describe('<sl-select>', () => {
expect(control.getAttribute('aria-expanded')).to.equal('false');
});
//
// Constraint validation tests
//
it('should focus on the custom control when constraint validation occurs', async () => {
const el = await fixture<HTMLFormElement>(html`
<form>

View File

@@ -29,10 +29,6 @@ describe('<sl-textarea>', () => {
expect(submitHandler).to.have.been.calledOnce;
});
//
// Constraint validation tests
//
it('should be valid by default', async () => {
const el = await fixture<SlTextarea>(html` <sl-textarea></sl-textarea> `);