Alex Krolick

Results 154 comments of Alex Krolick

The use case is for an app. > lts/argon, for example, means v4.9.1, and only that version, full stop. Right, the problem is since it's a rolling pointer, if a...

> I see - so if I understand correctly, you want a way in .nvmrc to say lts/argon but ALSO to say 4.9.1, so that if someone has a local...

I'll settle for documenting the workflow above, but I'll also propose this if it seems valuable to automate: ``` 4.9.1 # installs just this ``` ``` lts/argon # installs local...

> nvm doesn't track which versions used to be LTS - not sure if that'd be required. I don't think it would be, you'd just turn the local lts pointer...

Would it be possible to have some/all plugins run _after_ formatError? We are having the same issue of needing to log errors, but we do classification and tagging of the...

How are you supposed to decorate an error object in a plugin if they are readonly? +1 to overhauling error handling. This area feels very circular. You can transform in...

How about a ⭐️ ?

Does this still happen if you make the timeout longer than the React batch time (16ms)?

Trying to recap: The way `await findBy...` is supposed to work is 1) wait for effects to clear so that DOM is stable in terms of "known pending work" 2)...

And... I've seen this one in the wild now. Basically this: ``` expect(await screen.findByText('Loading...')).toBeInTheDocument(); ``` The expectation throws an error but not the findBy. Since it's a transient state, removing...