Wilson Page

Results 15 comments of Wilson Page

@simonsmith have you found a workaround for the [open/run screenshot file location issue](https://github.com/jaredpalmer/cypress-image-snapshot/issues/252#issuecomment-1173333184)?

I opened a PR to fix this: https://github.com/simonsmith/cypress-image-snapshot/pull/1

`nope-js` looks like an interesting project, how is it supposed to be used?

Who is responsible for setting the `lifeCycleMode`?

Ah I get ya! So using nope-js would throw if user tried to do a 'read' in a 'write' callback?

@developit any tips on what I should do here long-term? Is a fix in the works?

I switched from Nodemon to [Watchify](https://www.npmjs.com/package/watchify) and bumped the Karma `autoWatchBatchDelay` option to 500ms. So far so good.

HACKY fix for testing: ```ts const parseFormData = (form) => form._streams.reduce((result, line) => { if (typeof line === 'string') { const matches = line?.match(/name="(.+)"/); const key = matches?.[1]; if (key)...