Nicolas DUBIEN
Nicolas DUBIEN
Definitely, we could maybe use the same library as the one used by fats-check itself to test them. See: https://github.com/dubzzz/fast-check/tree/master/test/type
> > > > With Angular Ivy in the future, there will be a non zone mode, and user need to trigger change detection themselves. > > Any examples of...
@jashkenas IMO as the original source code was considering `0` to be different from `-0`, I'd say the change should consider `0` to be different from `Number.MIN_VALUE`. What's your opinion?...
Thanks for the suggestion, it will clearly push #484 a step further. Let's see how it goes for the simple case of #484 and iterate over it to try something...
Here is the current approach to build those kind of values using fast-check for the moment: ```js const alhpaNumericCharacterArb = fc.mapToConstant( { num: 26, build: v => String.fromCharCode(v + 0x61)...
See `exports` field in `package.json` - https://nodejs.org/api/esm.html#esm_package_exports
_Work in Progress_ - arbitraries - numeric - _internals_ - integer - _internals_ - nat - string - hexa - base64 - runners
Or like ramda: - arbitrary/ - _something that implements Arbitrary_ - __internals/_ - nat - integer - string - property/ - property - asyncProperty - runner/ - _something that consumes...
Circular imports might be detected by https://www.npmjs.com/package/dpdm. It may help to detect wrongly placed files or (in the future) avoid introducing circular dependencies.
@DTopping256 If you want to log values during the execution of the test, I recommend using `fc.context()` it exposes an instance having a `.log`. @nth-commit The main reason not to...