Nik Jmaeff

Results 7 comments of Nik Jmaeff

This is the issue right here https://github.com/apache/couchdb-nano/blob/7211bc71b1f52905ca4bf7fed82e68e5d049565e/lib/nano.js#L17 axios-cookiejar-support version 1.0.1 as no `default` export for its noop function which is used in the browser. https://github.com/3846masa/axios-cookiejar-support/blob/39c2d72ec40880cd1070d3c122f48e82f510f198/noop.js#L1-L7

I have this issue too and it is related to this line of code and the `findSync` function. The .next directory is read first and if your relative output matches...

@pantharshit00 Try this repro. [https://github.com/njmaeff/prisma-issue-10433](https://github.com/njmaeff/prisma-issue-10433)

This copies the `Any` asymmetric matcher in the `expect` library to allow a null or undefined object. ```typescript export class Nullable extends AsymmetricMatcher { constructor(sample) { if (typeof sample ===...

Below is a function I am using to make this work. ```python def fix_byte_keys(o): if isinstance(o, dict): return { (k.decode("utf-8") if isinstance(k, bytes) else k): fix_byte_keys(v) for k, v in...

@fider-apptimia The current behaviour for jest circus is to mark the test as error when a beforeAll hook fails. The test will not run but the rest of the beforeAll,...

I was able to fix this by updating the config.el file. I use .spacemacs.d for my configuration and I downloaded proof-general to %USERPROFILE%\\.spacemacs.d\bin. ```git diff --git a/config.el b/config.el index c243f3d..b678634...