From 38b0ace0cae4863908b3a190df08efef45696b23 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 9 Mar 2022 09:20:22 -0500 Subject: [PATCH] remove comments --- src/components/input/input.test.ts | 4 ---- src/components/select/select.test.ts | 4 ---- src/components/textarea/textarea.test.ts | 4 ---- 3 files changed, 12 deletions(-) diff --git a/src/components/input/input.test.ts b/src/components/input/input.test.ts index 8985c99c7..441a384ab 100644 --- a/src/components/input/input.test.ts +++ b/src/components/input/input.test.ts @@ -63,10 +63,6 @@ describe('', () => { expect(submitHandler).to.have.been.calledOnce; }); - // - // Constraint validation tests - // - it('should be valid by default', async () => { const el = await fixture(html` `); expect(el.invalid).to.be.false; diff --git a/src/components/select/select.test.ts b/src/components/select/select.test.ts index 376a97ecb..baa611563 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -93,10 +93,6 @@ describe('', () => { 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(html`
diff --git a/src/components/textarea/textarea.test.ts b/src/components/textarea/textarea.test.ts index 6a7bddc6b..a3bdb07ad 100644 --- a/src/components/textarea/textarea.test.ts +++ b/src/components/textarea/textarea.test.ts @@ -29,10 +29,6 @@ describe('', () => { expect(submitHandler).to.have.been.calledOnce; }); - // - // Constraint validation tests - // - it('should be valid by default', async () => { const el = await fixture(html` `);