From d19715b6d670ebf89d894bbf49a05cc548f2de6d Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 16 Sep 2020 12:03:16 -0700 Subject: [PATCH] feat #79 - Address PR comments --- src/components/Select/Select.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Select/Select.test.tsx b/src/components/Select/Select.test.tsx index bcda7006..a1346b29 100644 --- a/src/components/Select/Select.test.tsx +++ b/src/components/Select/Select.test.tsx @@ -102,7 +102,7 @@ describe('Select', () => { }) describe('icon', () => { - it('should render an icon for the option if is passed in', () => { + it('should render an icon for the option if it is passed in', () => { const select = mount() }) - it('should render an input as a search bar is search is enabled', () => { + it('should render an input as a search bar if search is enabled', () => { expect(wrapper.find('input')).toHaveLength(1) })