andrzej-woof

Results 14 comments of andrzej-woof

Hey, I still get this issue on `[email protected]`, `[email protected]` Any plans to address that?

Thanks for reply, I've used another workaround where URL contains test run ID, so it's unique per quarantine attempt (although removing mocks is probably better). I just feel like the...

As a workaround it seems that connection test is not invoked when you add new email integration first without auth enabled, edit it and then change configuration 🙄

> Does anyone have a sample repo with a workaround solution with [http-middleware](https://github.com/mswjs/http-middleware)? I've came up with the following code placed in `.storybook/middleware.js` ```js const cors = require('cors'); const bodyParser...

> Is there a way to use `@mswjs/http-middleware` but to set the handlers at Story level? I would like to apply a certain handler for a concrete set of Stories...

@oscard0m only localhost, you could try to modify request url before it's sent or add an entry hooking given domain to 127.0.0.1 in the system hosts file to capture other...

Hey, I've submitted PR https://github.com/node-config/node-config/pull/721 with a possible fix. Tested locally on the demo repo https://github.com/PavelPolyakov/config-vs-node-source-map-support (after updating deps) and it seems to work on my end

Also I think it might improve or even fix https://github.com/node-config/node-config/issues/613 given that it should prevent unnecessary processing of files other than `.ts` --- Quick test results on https://github.com/lavagri/nestjs-config-test (after updating...

Hi @EvanTedesco do you run your code via ts-node/ts-jest? If so your issue is a slightly different one. The original problem in the repo concerns running tsc compiled code directly...

A bit more context, after some further investigation, regarding `require.extensions` being deprecated see discussion [here](https://github.com/nodejs/node/issues/32483) - there seems to be on alternatives provided, and that property is still wildely used...