From e10651565f619d06c84f010259e5db489f99a2cc Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 30 Nov 2022 15:43:36 -0500 Subject: [PATCH] fix typos --- src/components/button/button.test.ts | 2 +- src/components/input/input.test.ts | 2 +- src/components/range/range.test.ts | 2 +- src/components/switch/switch.test.ts | 2 +- src/components/textarea/textarea.test.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/button/button.test.ts b/src/components/button/button.test.ts index dff552d16..6a5b659c5 100644 --- a/src/components/button/button.test.ts +++ b/src/components/button/button.test.ts @@ -89,7 +89,7 @@ describe('', () => { }); }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const button = el.shadowRoot!.querySelector('[part~="base"]')!; diff --git a/src/components/input/input.test.ts b/src/components/input/input.test.ts index c305aa362..39337f200 100644 --- a/src/components/input/input.test.ts +++ b/src/components/input/input.test.ts @@ -48,7 +48,7 @@ describe('', () => { expect(isNaN(el.valueAsNumber)).to.be.true; }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const input = el.shadowRoot!.querySelector('[part~="input"]')!; diff --git a/src/components/range/range.test.ts b/src/components/range/range.test.ts index ec7050ab9..731e6cd19 100644 --- a/src/components/range/range.test.ts +++ b/src/components/range/range.test.ts @@ -26,7 +26,7 @@ describe('', () => { expect(el.defaultValue).to.equal(0); }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const input = el.shadowRoot!.querySelector('input')!; diff --git a/src/components/switch/switch.test.ts b/src/components/switch/switch.test.ts index 4b5f2e736..6dd52b715 100644 --- a/src/components/switch/switch.test.ts +++ b/src/components/switch/switch.test.ts @@ -20,7 +20,7 @@ describe('', () => { expect(el.defaultChecked).to.be.false; }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const input = el.shadowRoot!.querySelector('input')!; diff --git a/src/components/textarea/textarea.test.ts b/src/components/textarea/textarea.test.ts index d98a4cae3..ec1c23c12 100644 --- a/src/components/textarea/textarea.test.ts +++ b/src/components/textarea/textarea.test.ts @@ -37,7 +37,7 @@ describe('', () => { expect(el.inputmode).to.be.undefined; }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const textarea = el.shadowRoot!.querySelector('textarea')!;