Jamie Rolfs

Results 73 comments of Jamie Rolfs

This had occurred to me when I was implementing the `find*` queries, but I guess I kind of assumed that since `hidden` in Testing Library terms is more directly related...

Your text match is probably too specific when matching against a parent element. See https://testing-library.com/docs/queries/about#textmatch. Please try to reference the Testing Library documentation when troubleshooting queries. ```ts const header =...

Is rebasing prerelease branches essentially not supported? I've now dug into how the notes stuff worked to be able to salvage prerelease branches that have been rebased and end up...

@Xunnamius ah, no this was a red herring/I was totally mistaken. My issue is with Git tags as of course rebasing clobbers the previous tags. I guess I had just...

Also, for the record, this is occurring with both Neovim and neovim-dot-app compiled from the latest source.

Hey, @ScubaDaniel thanks for creating an issue. The reason this library uses `ElementHandle`s is that `Locator`s did not exist when it was originally created. We've been working on a new...

@ScubaDaniel yeah, it seems like the issue is, in fact, the experimental `mount()` fixture. I set up [a little sandbox](https://github.com/jrolfs/playwright-testing-library-component-example/blob/main/playwright/index.ts#L1-L22) application to work through this, and I did find a...

@crazyvan25 can you open a new issue for the edge case you came across? It would be super helpful if you could put together a simple reproduction case similar to...

@ScubaDaniel heh, you had me worried for a second there as the `*ByRole` queries are the most important part of Testing Library imo — the issue you're coming up against...

@sebinsua are you suggesting we essentially "pass" the `Promise` returned from `findBy*` from the selector engine to the consumer of the Testing Library API? I kinda doubt it's as simple...