Alexandre Duponchel
Alexandre Duponchel
## Summary I am unable to execute keytar while in WSL. I got the error : ` Error: Cannot autolaunch D-Bus without X11 $DISPLAY` That was expected. Could you please...
```javascript const fn = jest.fn(); const symbol = Symbol('foo'); fn(symbol); expect(fn).toHaveBeenCalledWith(symbol); // jest : right expect(fn).toHaveBeenCalledWith(Symbol('foo')); // jest : wrong expect(fn).toHaveBeenCalledOnceWith(symbol); // jest-extended : right expect(fn).toHaveBeenCalledOnceWith(Symbol('foo')); // jest-extended : right...
https://github.com/SalesforceCommerceCloud/dw-api-mock/blob/cfc46f8fbd644772e7491e462e47d528cb20a1d9/dw/svc/LocalServiceRegistry.js#L17 as service id is lowercased, 'httpForm' will never match
Hi, In some applications String.prototype is sealed for security reason. In that context, define a new property on String.prototype will throw. It could be great if polyfill could be applied...