Tom Esterez

Results 22 comments of Tom Esterez

Hey @KATT , testing this on `@trpc/[email protected]`, only the type from the last `input()` call is preserved:

Same issue here. I would be fine with a `/// @zod.ignore` special comment to remove any specific field from the generated schema. Also, a global ignore configuration would be nice...

For info, [svg-path-bbox](https://www.npmjs.com/package/svg-path-bbox) is calculating the bbox as expected: ```sh > npx svg-path-bbox "M126.32 126.32C155.22 97.43 155.22 50.57 126.32 21.67C97.42 -7.22 50.57 -7.22 21.67 21.67C-7.22 50.57 -7.22 97.43 21.67 126.32C50.57...

Thanks for the quick reply @lavrton 👍

@janjarfalk if it helps, here is the simple workaround I used: ```js const getBodyStyleAttribute = ( backgroundUrl?: string, backgroundColor?: string, ) => isClient ? [ backgroundUrl && `background-image: url(${backgroundUrl});`, backgroundColor...

Thanks for sharing @AubreyHewes what about having something similar built into react-helmet?

Here is how I did it: ```ts export const registerScreenshotReporter = () => { /** * jasmine reporter does not support async. * So we store the screenshot promise and...

@jacobweber I just call `registerScreenshotReporter()` in `setupTestFrameworkScriptFile` (I'm not using jest-puppeteer anymore)

@ricwal-richa yes, `takeScreenshot` was not part of my code sample so it's normal you got this error. Here is the full code I use (this is typescript): ```ts import path...

@rostgoat you can call it in your `setupFilesAfterEnv` jest script.