From 15fd32fdd6612eb76967714398d52d826bbcf50b Mon Sep 17 00:00:00 2001 From: Kiran Varma Date: Thu, 21 Nov 2024 18:48:30 +0000 Subject: [PATCH] Update src/text-area-word-count/index.spec.jsx Co-authored-by: Jeff Horton <87995501+jeff-horton-ho-sas@users.noreply.github.com> --- src/text-area-word-count/index.spec.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/text-area-word-count/index.spec.jsx b/src/text-area-word-count/index.spec.jsx index fa4b988..0172512 100644 --- a/src/text-area-word-count/index.spec.jsx +++ b/src/text-area-word-count/index.spec.jsx @@ -13,7 +13,7 @@ describe('', () => { }); test('displays remaining words when wordCount is less than maxWordCount', () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper.find(wordCountHintId).text()).toContain('You have 3 words remaining'); }); @@ -23,17 +23,17 @@ describe('', () => { }); test('displays too many words when wordCount is greater than maxWordCount', () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper.find(wordCountHintId).text()).toContain('You have 2 words too many'); }); test('displays singular word when there is only one word remaining', () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper.find(wordCountHintId).text()).toContain('You have 1 word remaining'); }); test('displays singular word when there is only one word too many', () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper.find(wordCountHintId).text()).toContain('You have 1 word too many'); }); });