aweebit

Results 33 comments of aweebit

The changes are breaking as the checks on [e299a06](https://github.com/jestjs/jest/pull/14396/commits/e299a060765f8bdea6fc5f84d017e70711f0d4a3) clearly demonstrate: tests are broken when testing Jest itself and expecting colored output. _Update:_ Now, the color support is deduced from...

Not quite sure what exactly I did in [356d99c](https://github.com/jestjs/jest/pull/14396/commits/356d99c56a16cfe1661f974795c78b04ec8bb5e0) in order to fix the broken tests and why it only became necessary after [28d16ae](https://github.com/jestjs/jest/pull/14396/commits/28d16ae00ce0397c544c2b32ba30dfcdc843732f). Extra attention from reviewers is required.

The original issue is still not resolved. I might come back to this PR later to add tests and have a look at what else I can improve.

@sajera The problem is that there is no way to know for sure that `foo.bar` doesn't change between renders. However, there is a very simple solution: ```ts const foo =...

I want to use the opportunity and encourage everybody reading to have a look at #33041 and join in for a discussion. The issue has been completely ignored so far,...

`@nonnull` is a pretty bad name for this, makes it feel like it's only about `null`, and not `undefined`. `@nonnullable` is better as it corresponds to the `NonNullable` utility type's...

@Gabrola why was this closed? I don't see #728 merged.

I think I will make a habit of posting here every time I find myself missing support for `useState` dependency arrays once again. At this point I am just using...

What I didn't think about first when writing this issue is that resetting state created with `useReducer` could also be useful sometimes. I literally had a situation like that today...