Skip to content

Commit

Permalink
fix(typeahead-select/test): Fix initialKeyword test case
Browse files Browse the repository at this point in the history
  • Loading branch information
gulcinuras committed May 14, 2024
1 parent 60b7712 commit a4a3b75
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/select/typeahead/typeahead-select.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ describe("<TypeaheadSelect />", () => {
});

it("should set initialValue and remove when set new value", async () => {
render(<TypeaheadSelect initialKeyword={"initial"} {...defaultTypeaheadSelectProps} />);
render(
<TypeaheadSelect initialKeyword={"initial"} {...defaultTypeaheadSelectProps} />
);

const typeaheadSelectInput = screen.getByTestId(
`${defaultTypeaheadSelectProps.testid}.search`
Expand Down

0 comments on commit a4a3b75

Please sign in to comment.