mirror of
https://github.com/apache/superset.git
synced 2026-05-07 08:54:23 +00:00
userEvent.click is asynchronous in @testing-library/user-event v14+; unawaited calls left the downstream getByTestId assertion to race the modal render. Awaits both clicks in the Edit-dataset test so the modal is guaranteed open before the assertion runs. Addresses codeant-ai review on PR #39461.