Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] onDisappear is triggers when we render component with react-testing-library #94

Open
avishelkeumg opened this issue May 17, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@avishelkeumg
Copy link

avishelkeumg commented May 17, 2023

I'm not able to test the component with react-testing-library.

` const [isOpen, setOpen] = useState(false);

function close() {
   setOpen(false);
}

const { renderLayer, triggerProps, layerProps, arrowProps } = useLayer({
    isOpen,
    onOutsideClick: close,
    onDisappear: close,
    overflowContainer: false,
    auto: true,
});`

when we open popover, immediately its getting closed.
So I tried with removing onDisappear props then it works fine.

@avishelkeumg avishelkeumg added the bug Something isn't working label May 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant