bg de en es fr it nl pl pt sv tr zh

vitest

How to Do Visual Regression Testing in Vue with Vitest?

Alexander Opalic

TL;DR: Visual regression testing detects unintended UI changes by comparing screenshots. With Vitest’s experimental browser mode and Playwright, you can: Run tests in a real browser environment Define component stories for different states Capture screenshots and compare them with baseline images...

Frontend Testing Guide: 10 Essential Rules for Naming Tests

Alexander Opalic

Introduction The path to better testing starts with something surprisingly simple: how you name your tests. Good test names: Make your test suite more maintainable Guide you toward writing tests that focus on user behavior Improve clarity and readability for your team In this blog post, we’ll...