File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments