Simen Bekkhus

Results 1232 comments of Simen Bekkhus

https://github.com/malsup/blockui/pull/114

Use the official JSCS plugin instead: https://www.jetbrains.com/webstorm/help/jscs.html This plugin should probably get a pretty big deprecation notice...

FWIW, Chrome 108 was released 9 hours ago with a fix - from my testing the timings aren't broken anymore. EDIT: Might have misread the bug tracker and it's currently...

We'll be landing support for crawling symlinks with #9351. Work for `preserve-symlinks` is done in #9976, but I'm not sure if that's a viable approach or not. It might make...

Fake timers in Jest does not fake promises (yet: #6876), however - as you discovered - if you use a polyfill for `Promise` that uses either `setImmediate` or `process.nextTick` as...

The fact people use promises differently isn't Jest's responsibility - it was never a feature of Jest that you could run Promises using its fake timers. As you've noted, polyfilling...

Note that it is impossible, by JavaScript spec, for an `async function` to return anything other than native promises, so there's not anything we can do generically in Jest. This...

FWIW, this is essentially a duplicate of #2549, like https://github.com/jestjs/jest/issues/11864#issuecomment-1261468011 touches upon

Please provide a minimal reproduction, the one provided in the OP is quite large

Building on @manuth suggestion above, I don't think a custom plugin is needed - at least this seems to work for me: ```js output: { devtoolModuleFilenameTemplate(info) { const {absoluteResourcePath, namespace,...