Assertions in Loops in Unit Tests: Tips and Best Practices

Assertions, such as expect in vitest and jest, are an indispensable part of unit tests. However, assertions inside loops risk being silently skipped. In this post, we discuss some tips and best practices in situations where assertions live in loops. ...

August 26, 2024 · (Updated September 15, 2024) · 2 min · 345 words

Assertions in If-Clauses in Unit Tests: Tips and Best Practices

Assertions, such as expect in vitest and jest, are an indispensable part of unit tests. However, assertions inside if-clauses risks being silently skipped. There is even an ESLint rule that checks conditional assertions. In this post, we discuss some tips and best practices in situations where assertions live in if-clauses. ...

August 18, 2024 · (Updated September 15, 2024) · 3 min · 456 words