Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use screen instead of destructing render (#21)
# Use screen instead of destructing render ## ♻️ Current situation & Problem Destructing `render` to get selectors binds result of render to selectors. Sometimes it's unwanted, especially if creating some reusable functions across the tests. This binding is completely unnecessary, doesn't benefit tests readability and ease of development. It's easier to use `screen` everywhere, because of auto-completion and lack of maintenance of destructed properties. ## ⚙️ Release Notes * Use screen instead of destructing render ### Code of Conduct & Contributing Guidelines By submitting creating this pull request, you agree to follow our [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md): - [x] I agree to follow the [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md). --------- Co-authored-by: Paul Schmiedmayer <[email protected]>
- Loading branch information