Adam Gastineau

Results 229 comments of Adam Gastineau

Can you explain in more detail how you're populating these `input`s? I do not understand how you could input text and not have some identity information. Even if you just...

SVGs are not mere images; they are XML documents that can contain HTML and JavaScript. Because of this, the browser considers them much more risky than images. Specifically `use` copies...

Ah, I think we misunderstood each other. It's not a CORS issue with your application, that is, Chrome was not allowed to load your SVG. It's a CORS issue with...

My previous responses were unclear. First of all, this is an issue specifically with Playwright's Trace Viewer/UI Mode. In your case you may be able to properly load the SVG...

Possibly implement #34807 and #35049 as warnings.

Prototyped a TypeScript based, no dependency linter which could take existing linter rules like `no-floating-promises` without changes and run them in a very minimal harness. We decided this wasn't worth...

The issue is `chokidar` creating separate watcher calls for every single file under the project directory. This doesn't happen with `--list` as `--list` doesn't need to be responsive to test...

1. `node_modules` is already ignored. As your scenario suggests, the time is entirely spent on the many many files you have in your actual project. Are there files you would...

Revisiting this, why is setting `testDir` not a sufficient solution? If things are slow because too many unnecessary files are being processed, it seems like limiting Playwright to look at...