react-testing-library
Here are 229 public repositories matching this topic...
-
Updated
Jul 10, 2020 - JavaScript
-
Updated
Jul 8, 2020 - JavaScript
-
Updated
Jun 19, 2020 - JavaScript
So, I added this feature:
- await waitForElementToBeRemoved(() => screen.getByText('foo'))
+ const element = screen.getByText('foo')
+ await waitForElementToBeRemoved(element)Both work, but the first I think is easier most of the time.
But I just learned that in React applications (and likely other frameworks) the DOM nodes aren't always removed, rather they're updated.
-
Updated
Jul 9, 2020 - TypeScript
Hello, I tried to include this hook in my RN app and when I wrapp my AppContainer in the ModelProvider it throws this error.
My current dependencies are:
"dependencies": {
"expo": "^34.0.1",
"expo-font": "^6.0.1",
"native-base": "^2.13.4",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-modal-hook": "^2.0.0",
"react-native
-
Updated
Jun 17, 2020 - CSS
-
Updated
May 12, 2020 - TypeScript
-
Updated
Jul 4, 2020 - TypeScript
-
Updated
Jun 6, 2020 - TypeScript
I've stopped creating domains for projects that might not get traction. Instead I am now hosting most of my projects under a subdomain or subfolder of my main domain. Hence, this Dashboard project currently lives under dashboard.darekkay.com.
However, if this project becomes more popular, it should get a proper name and an own domain. So far, I didn't find a n
-
Updated
Jun 8, 2020 - JavaScript
-
Updated
Apr 16, 2020 - JavaScript
-
Updated
Jul 6, 2020 - JavaScript
-
Updated
Oct 30, 2018 - JavaScript
Add react router v5
Add react router v5 to the boilerplate. Easy to set up and configurable routes should be the first priority.
-
Updated
Jun 2, 2020 - JavaScript
-
Updated
Jun 7, 2020 - TypeScript
-
Updated
Jul 9, 2020 - TypeScript
-
Updated
Mar 26, 2019 - JavaScript
-
Updated
Jun 27, 2020 - F#
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Jul 7, 2020 - TypeScript
-
Updated
Jul 9, 2020 - TypeScript
-
Updated
Jun 7, 2020 - JavaScript
-
Updated
Apr 6, 2020 - TypeScript
-
Updated
May 1, 2020 - JavaScript
-
Updated
Sep 27, 2019 - JavaScript
-
Updated
Jun 7, 2020 - TypeScript
Improve this page
Add a description, image, and links to the react-testing-library topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the react-testing-library topic, visit your repo's landing page and select "manage topics."
Describe the feature you'd like:
Being new to testing-library, it all is a bit overwhelming. The long list of matchers
jest-domintroduces, also makes it harder to start out.Suggested implementation:
Group the matchers in the documentation over some headings, e.g. “Checking element existence”, “Checking forms”, “Checking element state”.
Describe alternatives you've cons