Dan Kirkham
Dan Kirkham
I'll happily pick up gatsby-link. Been meaning to learn some more around there!
@blainekasten just a few preliminary comments. There are quite a few globals/window variables: `__BASE_PATH__`, `___navigate`, `___push`, `___replace`, `__PATH_PREFIX__`, `___loader`. Is there a strategy about making those available to typescript? I...
@robertrbairdii I came to the same findings on my PR: https://github.com/gatsbyjs/gatsby/pull/22027 It wasn't obvious at first, but lucky there is some prior art in the `gatsby-cli` project to look at....
@marcperez any further update on this, Adyen is by far the biggest offender for us right now. @matsinfiltratingvy suggestion would work well for us!
@marcperez I've also notice that there is a dependency on preact. That's somewhat weird, as we are running within the context of React, so we're now having to use 2...
I absoutely can try, there doesn't seem to be a way to [configure](https://github.com/testing-library/dom-testing-library/blob/master/src/config.ts#L12) this globally though (I have to do this in many places). Is that something that you could...
@eps1lon what are your thoughts? I've responded and it doesn't feel like this is getting any love at all
Thanks for the quick reply Nick, does that not suggest that any `waitFor` that is sufficiently slow would trigger this? If so, is `waitFor` problematic in it's design? What do...
For reference the `getByRole` was taking 400-500ms and would cause the `waitFor` to loop 3-4 times. The best fix (for time) is to insert a more trivial query before that...
Setting an interval of 750 still caused 2 iterations to fail (~450ms), then the fetch promise resolves. There's one more failure (output still not rendered to the screen), finally it...