Another fun little tool let's you use is Vitest UI. It allows you to see and manage all your tests from the web browser. Let's add it.

npm i -D @vitest/ui@2.1.3

And in your package.json

// in scripts
"test:ui": "vitest --ui"

Now from the command line run npm run test:ui and it should pop up your browser with the Vitest UI open. Super convenient, particularly in places you need to run individual tests repeatedly and you don't have the VS Code extension. The module graph is a cool visualization as well.