Reading List
Exploring testing private TypeScript functions with Jest from Liza Shulyayeva RSS feed.
Exploring testing private TypeScript functions with Jest
I’ve been writing a bit of TypeScript lately, and have needed to learn some strategies to test private functions that are not class methods. With class methods it’s straightforward since you can use array access to get to them, but with functions it seemed a bit trickier.