Maciej Jastrzebski

Results 168 comments of Maciej Jastrzebski

I think we also need to think whether to support some ARIA roles that are important but not present in RN [`AccessibilityRole`](https://reactnative.dev/docs/accessibility#accessibilityrole) definition, especially: `textbox`, maybe something more.

Do we know which implicit roles we want to support for which components? Initially we could start with: * `text` for `Text` * `textbox` for `TextInput` (not present in [`AccessibilityRole`](https://reactnative.dev/docs/accessibility#accessibilityrole)!)...

I think we need to build some playground repos for native, so that we have easier job when examining these roles. For native we could build a sample Expo app...

Not sure how reliable is [ESLint A11y plugin](https://github.com/FormidableLabs/eslint-plugin-react-native-a11y), but there are some of interesting rules: * has-accessibility-props: Enforce that components only have either the accessibilityRole prop or both accessibilityTraits and...

BTW There seems to be some accessibility stuff that might help us with assumptions in RNTester app: https://github.com/facebook/react-native/blob/e8739e962de3398bc7e42675b1d87ab35993f705/packages/rn-tester/js/examples/Accessibility/AccessibilityExample.js App itself is located here: https://github.com/facebook/react-native/blob/main/packages/rn-tester/README.md

In order to have more concrete information about iOS/Android behaviour, I've stared doing experiments how different a11y props combinations affects behaviour of assistive tech on iOS and Android. I share...

@henrymoulton afaik RN and Jest do not have such thing as supported version mapping, so you should be able to update Jest version independently of RN. @thymikee maybe you have...

@leepowelldev Does the `MyComponent` test work correctly if we have only 2 promises? What about a single promise? I wonder what might be threshold fold observed behaviour.

I've retested the repro repo you submitted with following deps update and all tests pass: ``` "dependencies": { "react": "18.1.0", "react-dom": "18.1.0", "react-native": "0.70.1", }, "devDependencies": { "@testing-library/react-native": "^11.2.0", "react-test-renderer":...

Closing as fixed. @leepowelldev If the issue still occurs for you on the latest version of RNTL, please provide update the repo with latest RNTL, React, etc deps so that...