Yevhen Kozlov
Yevhen Kozlov
Cross-reference from toHaveBeenCalledWith to asymmetric matchers like expect.anything() or expect.objectContaining() for better clarity Fixes #11752 ## Summary Docs give an example of usage `expect.anything()` and other asymmetric matchers when defining...
### In summary Having 3+ nesting for `` does not work well ### Longer description Next markup works fine: ``` Start First one nested Another nested 0 1 2 3...
if I use "http://localhost:8080" as trigger URL plugin does not start background requesting for URL based on given. E.g. "http://localhost:8080/test" does not start requesting.
Initially raised in https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/69439 : `mapValues` returns object for array input, not an array: [TS Playground](https://www.typescriptlang.org/play/?ssl=3&ssc=9&pln=2&pc=1#code/JYWwDg9gTgLgBAbziAhmAaigNgVwKYDOcAvnAGZQQhwDkWEAJigQBY0DcAUAMYQB2BeCjgBeZGky5CACgDaARgA0AJkUBmALqK40gJSiAfHBhR8uzgHoLcG3AB6AfiA) [source code for mapValues](https://github.com/lodash/lodash/blob/main/src/mapValue.ts) is straight on this(`result = {}`) - [x] Use a...
Initial case I've run into: ``` const a: number[] | undefined .... if (!isEmpty(a)) { a[0] // Error: a is possibly undefined } ``` so I had to do fight...