Bram Gotink
Bram Gotink
> i've looked into this, and the challenge is that I don't actually want 4 separately controllable situations - i want the user to be able to pick one of...
@petebacondarwin That option doesn't seem to make any difference. In the example repo in the OP ng-packagr still yields the same error if I turn `generateDeepExports` on or off, and...
We've been consistently running into this issue once every few months, and for now our solution has been to replace the `forRoot()` function with an alternative set-up (e.g. a second...
@dgozman Thanks for the feedback! I'll take the approach of a custom selector engine, one that explicitly works on the flattened DOM (like the built-in `css:light` that only works on...
Yeah and that's probably why it's confusing to me. In my code I'm performing actions along the line of "click the confirm button in the footer", which no longer work...
Nope, I'm not planning on extending this package at the moment, I don't use react in any project, and I haven't looked at component testing in playwright yet. It might...
It appears the `base64url` encoding was added in node ≥ 14.18.0 ([source](https://github.com/nodejs/node/commit/f8ab632d56ea15c78b1dc5db1624109a2bf7b69b)). Is it feasible for you to update to a newer version of node? I could work around it...
> 1. I don't know why import statements are marked as uncovered; If you hover over the uncovered line you'll see what is uncovered. It says "branch not covered". Looking...
Did you perhaps use `@playwright/test`'s own `test` function in your tests? If you don't use a `test` function created using `mixinCoverage`, coverage won't be tracked and the reporter won't have...
If I understand the code in these dependencies correctly, it appears that the sourceMap has a `null` in the `sourcesContent` array. According to [the sourcemap spec](https://sourcemaps.info/spec.html), that's allowed: > [sourcesContent...