DEV Community

Discussion on: Adding Jest tests to a project

Collapse
 
peerreynders profile image
peerreynders

I think SvelteKit adopted uvu.

I suppose Solid.js is using Jest simply because of contributor skill prevalence.

A pet hypothesis of mine is that Jest's feature set encourages testing to drift from "microtesting" to "integrated testing" (should be covered by end-to-end testing) which fails to impose the correct design pressures on the components.

Collapse
 
lexlohr profile image
Alex Lohr • Edited

Solid-start (basically Solid's SvelteKit) is currenlty planning its test suite; since I'm the resident Solid.js unit testing guy, I suggested either uvu or vitest.

Update: vitest it is.