Skip to content

Commit

Permalink
chore: tweak docs (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski authored Nov 10, 2022
1 parent 80c5563 commit fae097a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/Bug_Report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ We'll probably ask you to submit the fix (after giving some direction). If you'v
### Relevant code or config:

```js
const your = code => 'here';
const your = (code) => 'here';
```

### What you did:
Expand Down
3 changes: 1 addition & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ Please fill out the information below to expedite the review and (hopefully) mer
<!-- Add "(N/A)" to the end of each line that's irrelevant to your changes -->
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->

- [ ] Documentation added to the
[docs](https://github.com/testing-library/jest-native/README.md)
- [ ] Documentation added to the [docs](https://github.com/testing-library/jest-native/README.md)
- [ ] Typescript definitions updated
- [ ] Tests
- [ ] Ready to be merged <!-- In your opinion -->
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CHANGELOG

The changelog is automatically updated using
[semantic-release](https://github.com/semantic-release/semantic-release). You
can see it on the [releases page](../../releases).
[semantic-release](https://github.com/semantic-release/semantic-release). You can see it on the
[releases page](../../releases).
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,9 @@ An element is visible if **all** the following conditions are met:
- it does not have its style property `display` set to `none`.
- it does not have its style property `opacity` set to `0`.
- it is not a `Modal` component or it does not have the prop `visible` set to `false`.
- it is not hidden from accessibility as checked by [`isInaccessible`](https://callstack.github.io/react-native-testing-library/docs/api#isinaccessible) function from React Native Testing Library
- it is not hidden from accessibility as checked by
[`isHiddenFromAccessibility`](https://callstack.github.io/react-native-testing-library/docs/api/#ishiddenfromaccessibility)
function from React Native Testing Library
- its ancestor elements are also visible.

#### Examples
Expand Down

0 comments on commit fae097a

Please sign in to comment.