Advertisement
thewitchking

Untitled

Jun 10th, 2025
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. test("Dropdown shows on input", async () => {
  2.   render(<SearchBar />);
  3.  
  4.   const input = screen.getByTestId("search-input");
  5.  
  6.   fireEvent.change(input, { target: { value: "delhi" } });
  7.  
  8.   await waitFor(() => {
  9.     expect(screen.getByTestId("auth-dropdown-btn")).toBeInTheDocument();
  10.   });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement