Skip to content

Commit 14fb51e

Browse files
author
Said Shah
committed
Alphabetization
1 parent 8be968d commit 14fb51e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/atoms/forms/select.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ describe("Select", () => {
1414
const { getByText } = render(
1515
<Select
1616
id={expected}
17-
options={[{ label: testLabel, value: testValue }]}
1817
onChange={() => {}}
18+
options={[{ label: testLabel, value: testValue }]}
1919
/>
2020
);
2121

@@ -35,8 +35,8 @@ describe("Select", () => {
3535
const { getByDisplayValue } = render(
3636
<Select
3737
id={expected}
38-
options={[{ label: testLabel, value: testValue }]}
3938
onChange={handleChange}
39+
options={[{ label: testLabel, value: testValue }]}
4040
/>
4141
);
4242

@@ -58,10 +58,10 @@ describe("Select", () => {
5858
// Act
5959
const { container } = render(
6060
<Select
61+
cssClassName={testClassName}
6162
id={expected}
62-
options={[{ label: testLabel, value: testValue }]}
6363
onChange={() => {}}
64-
cssClassName={testClassName}
64+
options={[{ label: testLabel, value: testValue }]}
6565
/>
6666
);
6767
const result = container.getElementsByClassName(testClassName);

0 commit comments

Comments
 (0)