Ernesto García
Ernesto García
I was thinking that maybe the [notifications API](https://developer.mozilla.org/en-US/docs/Web/API/notification) could be used to allow users to setup the app to remind them daily to write if they haven't. This would be...
This will probably be a test rendering something similar to the demo, and asserting in the test that what's rendered by the render prop contains what's expected, and that all...
I found out about this vim plugin when looking for a way to soft-wrap a vim buffer to a specific width. So in reality I do not need all of...
### Is this a bug report? No ### What's the question then? I wonder why `src/setupTests.ts` is excluded in `tsconfig.json`. The thing is, when extending jest with custom matchers that...
I think `.trimStart` and `.trimEnd` are easily replaceable: ```js _.trimStart(str) === str.replace(/^\s+/, '') _.trimEnd(str) === str.replace(/\s+$/, '') ``` Just wanted to make sure it's ok and that I'm not missing...
What should be the importer behavior when an exception occurs inside an `on :row_success` block? The row was supposedly processed successfully, so exceptions on this event are not captured and...
Have you considered adding support for tests? This would make it much more useful as a potential React starter kit, while still keeping it relatively minimal. I already did it...
Regarding the rules about using nested conditionals for flow of control found [here](https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals), I wanted to raise attention to these two particular fragments of the bad vs good code samples:...
**What**: Fixes https://github.com/testing-library/jest-dom/issues/209#issuecomment-1012250013 **Why**: Because `.toBeVisible(element)` is not consistent with how CSS `visibility` works. **How**: By fixing the logic that calculates how visibility is determined. Enough details are present in...
### Describe the feature you'd like: In the light of projects like [Reach UI](https://github.com/reach/reach-ui) and [react-beautiful-dnd](https://github.com/atlassian/react-beautiful-dnd) and others like them, that have a focus on accessibility, I was thinking that...