Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
Something went wrong. Try again.
265 B · 14 lines
TypeScript
123456789101112131415/* eslint-disable unused-imports/no-unused-vars */export function sum(a: number, b: number) { if (a === 3 && b === 4) { // This should be uncovered return 7 }
return a + b}
function uncoveredFunction() { // This should be uncovered return 1}