testing-library
Here are 121 public repositories matching this topic...
AssertJ's AbstractIterableAssert is large. We don't have an equivalent to every last assertion (and this is sometimes intentional), but for cases in which we do have an equivalent, we could help prospective users / migrating users / users with
-
Updated
Jun 13, 2020 - Kotlin
https://docs.nose2.io/en/latest/configuration.html#configuration-files is missing a bit of crucial information: what is the name of the .ini file? It looks like it can be both "unittest.cfg" or "nose2.cfg" if I read the code. Is this correct?
-
Updated
Jun 12, 2020 - Python
-
Updated
Jun 10, 2020 - TypeScript
Get a fancy logo
Bandit needs a logo. The automatically generated avatar on GitHub always reminds me of that.
My initial idea was to combine the hexagon of the C++ logo, a bandit mask and a BDD cycle in one logo. The [result of my first attemp
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.
Currently, we are supporting Angular, React and Vue for shareable configurations. The configuration contains the following rules:
- await-async-query
- await-async-utils
- no-await-async-query
- no-debug
- no-dom-import
It would be nice to add shareable configurations for other libraries such as:
-
Updated
Sep 30, 2019 - Java
-
Updated
Jun 11, 2020 - CSS
-
Updated
May 12, 2020 - TypeScript
By the next's document, this causes all pages to be executed on the server -- disabling Automatic Static Optimization.
-
Updated
Jun 13, 2020 - HTML
I think react-navigation is the most popular navigation solution out there
so we should provide an easy way to just use the route config from react navigation
-
Updated
May 14, 2020 - Python
I have used testcafe-testing-library on chrome/firefox/IE11. Chrome and Firefox all work fine but I am having these errors on IE11:
An error occurred in Selector code:
TypeError: Unable to get property 'apply' of undefined or null reference
An error occurred in a script injected into the tested page:
TypeError: Unable to get property 'for' of undefined or null reference
I am wonderin
-
Updated
Jun 13, 2020 - JavaScript
-
Updated
Jun 9, 2020 - Java
-
Updated
May 18, 2020 - JavaScript
-
Updated
Dec 30, 2018 - Kotlin
-
Updated
Jun 13, 2020 - Shell
-
Updated
Jun 1, 2020 - TypeScript
-
Updated
Dec 3, 2019 - PicoLisp
-
Updated
Jun 12, 2020 - JavaScript
-
Updated
Jun 8, 2020 - Java
-
Updated
Mar 20, 2019 - Java
-
Updated
Jun 14, 2020 - TypeScript
-
Updated
Jun 12, 2020 - JavaScript
-
Updated
Jun 6, 2020 - TypeScript
Improve this page
Add a description, image, and links to the 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 testing-library topic, visit your repo's landing page and select "manage topics."
I want to give my users an option to select either local or remote backend. But it seems Terratest does not support setting path to the config file via
-backend-config=PATHparameter, only key-value parameters.