Question for a personal project: I’m using #typescript with esbuild for a web app and no front-end framework, is there an established unit test tool that would work for my situation and doesn’t bring a big list of dependencies ? I don’t need browser-testing or anything fancy
@archiloque #Node test runner would be a zero dependency option.
https://nodejs.org/api/test.html
Otherwise you're probably looking at #Vitest, #Jest, or #Jasmine, but they have varying amounts of dependencies and complexity.
@develwithoutacause I actually tried to use it this morning but failed to make it work 😭