Skip to content

Commit 0e9c084

Browse files
committed
Run prettier
1 parent b11b3e6 commit 0e9c084

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Contacts/ContactDetails/ContactDetailsTab/People/Items/PersonModal/PersonBirthday/PersonBirthday.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ describe('PersonBirthday', () => {
5050
} as FormikProps<(PersonUpdateInput | PersonCreateInput) & NewSocial>;
5151

5252
const { getByLabelText } = render(
53-
<Component formikProps={nullFormikProps} />
53+
<Component formikProps={nullFormikProps} />,
5454
);
5555
const birthdayInput = getByLabelText('Birthday') as HTMLInputElement;
5656
expect(birthdayInput.value).toBe('');
@@ -66,7 +66,7 @@ describe('PersonBirthday', () => {
6666
} as FormikProps<(PersonUpdateInput | PersonCreateInput) & NewSocial>;
6767

6868
const { getByLabelText } = render(
69-
<Component formikProps={partialFormikProps} />
69+
<Component formikProps={partialFormikProps} />,
7070
);
7171
expect(getByLabelText('Birthday')).toBeInTheDocument();
7272
});

src/components/Contacts/ContactDetails/ContactDetailsTab/People/Items/PersonModal/PersonShowMore/PersonShowMore.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ describe('PersonShowMore', () => {
4545
it('renders form fields', () => {
4646
const { getByRole, getByDisplayValue } = render(<TestComponent />);
4747
expect(
48-
getByRole('textbox', { name: 'Legal First Name' })
48+
getByRole('textbox', { name: 'Legal First Name' }),
4949
).toBeInTheDocument();
5050
expect(getByRole('combobox', { name: 'Gender' })).toBeInTheDocument();
5151
expect(
52-
getByRole('combobox', { name: 'Relationship Status' })
52+
getByRole('combobox', { name: 'Relationship Status' }),
5353
).toBeInTheDocument();
5454
expect(getByDisplayValue('01/01/1990')).toBeInTheDocument();
5555
expect(getByRole('checkbox', { name: 'Deceased' })).toBeInTheDocument();

0 commit comments

Comments
 (0)