Tomer Aberbach

Results 17 issues of Tomer Aberbach

## ๐Ÿš€ Feature Request / Motivation I've been using `fast-check`'s `fc.func(arb)` and `fc.compareFunc()` arbitraries and they've been very useful because I frequently write functions that expect other functions as arguments!...

๐Ÿš€ Feature Request
โœ”๏ธ Feature Accepted

I've been using this library and I've noticed there are a decent number of issues and pull requests without responses. I know life happens and repositories can become difficult to...

Currently, `dagre-d3` depends on the entire [`d3`](https://github.com/d3/d3) library, but it only directly uses exports from the [`d3-selection`](https://github.com/d3/d3-selection) and [`d3-shape`](https://github.com/d3/d3-shape) libraries. You can verify this by [searching for "d3" in this...

I want to prefill a `select_tag` field with tags, but I have not been able to find any documentation or anything in the code about it. My use case is...

Fixes #40463 Could use some help figuring out where to add a test! I looked around and found [`jest-next-swc.test.ts`](https://github.com/vercel/next.js/blob/canary/test/unit/jest-next-swc.test.ts), but I don't think I can use that to test this...

type: next

## ๐Ÿš€ Feature Request ```diff - declare function constantFrom(...values: T[]): Arbitrary; + declare function constantFrom(...values: T[]): Arbitrary; ``` ## Motivation Right now `fc.constantFrom('a', 'b', 'c')` returns `Arbitrary`, which is a...

๐Ÿš€ Feature Request
โœ”๏ธ Feature Accepted
๐Ÿ’ฅ Next Major

## ๐Ÿ› Bug Report I used to configure [`eslint-plugin-jest`](https://github.com/jest-community/eslint-plugin-jest)'s [`expect-expect`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/expect-expect.md#additionaltestblockfunctions) rule like so: ```json { "jest/expect-expect": [ "error", { "assertFunctionNames": ["expect"], "additionalTestBlockFunctions": ["testProp"] } ] } ``` And it would...

๐Ÿ› Bug Report

## ๐Ÿš€ Feature Request Right now `fc.object(...)` is typed as always returning `Arbitrary`, but if I pass arbitraries for the `key` and/or `values` options, then I would expect the return...

๐Ÿš€ Feature Request
โœ”๏ธ Feature Accepted
๐Ÿ’ฅ Next Major

See https://github.com/dubzzz/fast-check/issues/4474 `fast-check` exposes a `test.prop` function that's invoked similarly to Jest's built-in `test.each`. However, it doesn't seem like `expect-expect` and `no-standalone-expect`'s `additionalTestBlockFunctions` option supports `test.each`-like function. Probably because the...