Tim Osborn
Tim Osborn
Thanks for Plasmo! FYI for some reason when I relocate the [with-devtools](https://github.dev/PlasmoHQ/examples/blob/main/with-devtools) example into `src/` following https://docs.plasmo.com/customization#using-the-src-directory-for-source-code, then I get the following build error: ``` 🔴 ERROR | Failed to...
I came to suggest the same thing! A use case for me is in helping to craft `jq` queries
I've just stumbled across this issue due to my own misunderstanding of the behaviour of `expect.hasAssertions` and `expect.assertions()` AFAICT, jest signals expectation failure by throwing, so when I run the...
My use case: adding project-specific documentation to the existing types for NextJS. > Currently the ugly hack is to automate the process of commenting existing declarations using [patch-package (links to...
I'm seeing this too.. thanks for the workaround, using strings works for me 👍
Agh, took me a while to find this issue - this issue is nuking my tests in a cloudflare workers environment, where I'm attempting to test the result of [`new...
Building a query with filters via notion.py is working for me, but I can't examine queries (even the default) via `cvb.get(query')` ```python filter_params = { "filters": [ { "filter": {...
FYI I'm hitting a similar issue attempting to apply a patch to react-dropzone after upgrading patch-package from 7.0.0 to 8.0.0. This is the patch that has previously worked: https://github.com/react-dropzone/react-dropzone/issues/1259#issuecomment-1404288766 I...
Here's a guide from React Testing Library for v6: https://testing-library.com/docs/example-react-router/
Not sure if this is a valid solution, but I notice in the example: https://github.com/remix-run/react-router/blob/main/examples/navigation-blocking/src/app.tsx#L42 ```tsx if (import.meta.hot) { import.meta.hot.dispose(() => router.dispose()); } ``` ...seems to resolve the warning for...