Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- test("Dropdown shows on input", async () => {
- render(<SearchBar />);
- const input = screen.getByTestId("search-input");
- fireEvent.change(input, { target: { value: "delhi" } });
- await waitFor(() => {
- expect(screen.getByTestId("auth-dropdown-btn")).toBeInTheDocument();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement