Ernesto García
Ernesto García
Sounds good. I'm in favor too. I've got a question though: what would happen if the list of elements is empty? The regular rules of logic would dictate that in...
Exactly what I was thinking.
On a second thought, I'm a bit worried about the complexity this feature introduces in the code, compared to the return. In part I'm thinking of this now, after seeing...
Sounds like a plan. I do want to see it first in action. Cause I'm not yet convinced this will be automatically useful without user-friendly messaging.
@benmonro in that case I'd like you to chime in on the concerns raised above.
Ok, fair enough. However, on re-reading the options, I would go for option 2. Is the same as option 1 but it gives a bit more info about the overall...
I'd be open to a `toBeAriaHidden` only because visibility spreads down. So if you check for an element that's inside a parent with `aria-hidden="true"` that element will also be considered...
Have you tried specifying the css properties in the matcher without using a compound form? ```js toHaveStyles(` transition-delay: ... transition-duration: ... ... `) ``` Not saying it's a definite solution,...
Ok, thanks for your input. I'll leave this ticket open and dig more into why this is happening.
> Any news on this? This passes in my test suite: > > ``` > beforeEach(() => { > renderResult = render(Test); > element = renderResult.getByTestId('paragraph'); > }); > >...