Simen Bekkhus

Results 1232 comments of Simen Bekkhus

Should work if people use the builtin `Promise` and `async-await`, no? If it breaks builtin `Promise` global I'd consider that a bug in node. My main issue is that to...

As a data point, in a work project where I migrated to use Jest's fake timers now that Jest ships with Lolex it broke `node-fetch` (and/or integration with `nock`, not...

`import {setTimeout} from 'timers/promise'`

not sure if it's possible to mock? unless it's also available somewhere globally so we can replace it

ESM as well? But that's promising? 😃

Hiya 👋 Currently working on migrating some code from `node-fetch`&`nock` to `undici`, and I think I'm hitting something similar to this. I have a certificate to use, therefore I must...

This is super awesome, looking forward to run it on Jest's code base 🙂 Found an error testing this out ```js type MyType = { numbericThing: 42, }; ``` `Error:...

Would be awesome to make it a viable option, yeah! 👏 Runners are generally a better fit for files that a processed in isolation (like tests, linting, and babel's transpilation)...

>So to reuse this technique it would be great if jest could provide a "runId" or something, so we could only call the type checking service once for a particular...