Anıl Anar
Anıl Anar
Let's merge this? One minor note though: this PR doesn't fix #163 unlike what PR description says, if I'm not mistaken.
I think we have a winner idea already, the most liked comment [above](https://github.com/testing-library/dom-testing-library/issues/583#issuecomment-997347372).
I wonder if there's a smart way to work around this by using one of cypress's built-in commands that would be a no-op but would make it run actionability tests...
@ParriauxMaxime The downside of that workaround is that it will now render things such as menus, popovers and all usages of portals behind toasts. Maybe worth making a note of...
@codebutler I agree, it's an extreme and most likely an ignoreable edge case. But I would expect a menu to appear above everything else when I click it. Let's say,...
@anubra266 What about the reproduction in original post? That reproduction with zag deps updated to latest version is still reproducible. Basically checkbox menu items cannot be toggled while `closeOnSelect: false`...
I wanted to use `polished` to produce a 7 character (`#xxxxxx`) hex color so that it can be used by HTML5 `` but polished produces shortest possible hex, which doesn't...
This proposal, in its current form, doesn't address what happens to checking library code. For those who don't know, `tsconfig.json` flag applies to everything, including library code. What happens when...
@qpwo Let me give an example: ```ts // node_modules/sort-library/index.d.ts /** * Sorts an array in place */ export function sort(arr: number[]): void; ``` ## Today ```ts // src/index.ts import {...
@MartinJohns Perhaps this issue and its dual #32758 require some enlightenment about that. Does true immutability exist in TS? If it doesn't, don't we refer to `readonly` fields and `ReadonlyArray`s...