@samir@mastodon.functional.computer
Post #1295634
2026-04-14 09:40 UTC
@mrksdck @tdpauw I’m a big fan of high-level “fast” tests that do everything in memory, stubbing out the ports+adapters but not testing individual classes/functions. My problem with a lot of these fully-E2E tests is that they’re slow and flaky!
Replies (1)
-
@tdpauw@mastodon.social 2026-04-15 06:18
@samir @mrksdck My biggest issue, apart from the fact that they are slow, is the idea that people have that they could test everything with end-to-end tests. Which is plain impossible. The combinations of cases are way too large. It's also not economical. That's what we want to achieve with unit tests. That's what gives an economical high coverage.