| cleanup | Cleans up the rendered component by unmounting it and destroying windows. Should be called after each test to reset state. |
| findAllByLabelText | Waits for and finds all widgets matching the specified label text. |
| findAllByRole | Waits for and finds all widgets matching the specified accessible role. |
| findAllByTestId | Waits for and finds all widgets matching the specified test ID. |
| findAllByText | Waits for and finds all widgets matching the specified text content. |
| findByLabelText | Waits for and finds a single widget matching the specified label text. |
| findByRole | Waits for and finds a single widget matching the specified accessible role. |
| findByTestId | Waits for and finds a single widget matching the specified test ID. |
| findByText | Waits for and finds a single widget matching the specified text content. |
| render | Renders a React element into a GTK application for testing. |
| teardown | Tears down the testing environment by cleaning up and stopping GTK. Can be used as global teardown in your test runner configuration. |
| waitFor | Waits for a callback to succeed without throwing an error. |
| waitForElementToBeRemoved | Waits for an element to be removed from the widget tree. |