Vitest vs. Jest 2026: The Migration Guide With Real Benchmarks, by (not on Mastodon or Bluesky):
https://www.sitepoint.com/vitest-vs-jest-2026-migration-benchmark/
Vitest vs. Jest 2026: The Migration Guide With Real Benchmarks, by (not on Mastodon or Bluesky):
https://www.sitepoint.com/vitest-vs-jest-2026-migration-benchmark/
What’s New in ViteLand: January 2026 Recap, by @manniL (@voidzero.dev):
Git-хуки, которые не дают коммитить плохой код
Здравствуйте, коллеги программисты! Большинство фейлов в CI — это мелочи: забытый console.log , форматирование, линт, сломанный импорт, файл без теста. Такие ошибки не должны доезжать до сборки или код-ревью. Git-хуки позволяют запускать проверки прямо во время git commit и блокировать коммит, если были обнаружены нарушения. В прошлой статье я рассказывал про скрипты, которые я использую для проверки качества кода в PHP/Laravel. В этой статье я хочу рассказать о скриптах для JavaScript/TypeScript и Python — линтинг, форматирование, тесты, статический анализ и проверка наличия тестов. Все скрипты описанные в статье находятся здесь - https://github.com/prog-time/git-hooks
https://habr.com/ru/articles/993870/
#линтер #git_hooks #javascript #python #eslint #prettier #tsc #vitest #mypy #pytest
🤔 The article promises EVERYTHING about `act()` in React tests, but delivers a haphazard buffet of disjointed topics, leaving you more confused than a cat in a bath 🛁. It's like going to a pizza place and getting served a salad, a smoothie, and a lecture on #Vitest. Bon appétit! 🍕💥
https://howtotestfrontend.com/resources/react-act-function-everything-you-need-to-know #ReactTesting #DisjointedTopics #ConfusedDev #PizzaAnalogy #HackerNews #ngated
I think I've rested enough to start blogging again. What do you think I should write about next?
#blogging #poll #testing #typescript #astro #vitest #playwright
🌘 Vitest 瀏覽器模式:前端測試的未來
➤ 告別虛擬 DOM,擁抱真實瀏覽器的組件測試新標準
✤ https://howtotestfrontend.com/resources/vitest-browser-mode-guide-and-setup-info
長期以來,前端工程師在進行單元測試時,大多依賴 jsdom 等模擬環境,雖然速度快,卻無法完全還原真實瀏覽器的行為,特別是在處理複雜的 Web API(如 LocalStorage 或 IntersectionObserver)時常顯得力不從心。Vitest 推出的「瀏覽器模式」(Browser Mode)打破了這項僵局。它結合了單元測試的「組件隔離」特性與端對端(E2E)測試的「真實環境」,讓開發者能在 Chrome 或 Firefox 等真實瀏覽器中直接測試單一組件。這不僅消除了模擬環境的侷限性,更提供直觀的視覺化介面輔助除錯。隨著 Vitest 4.0 將此功能列為穩定版,這項技術正引領前端測試邁向更真實、更高效的新紀元。
+ 終於可以不用再寫那
##前端開發 #自動化測試 #Vitest #React #網頁開發
The answer to avoid the backflips when tests need to import from ES modules was to use #Vitest (https://vitest.dev). I am using #rollup, not #vite, but Vitest works beautifully and various Jest-isms like `beforeAll`, `expect`, etc required no changes. #WYSIWYG #JavaScript
I asked Copilot to help me fix tests during transition from Jest to #Vitest . It commented out several assertions and skipped one test completely. Thanks, I guess. Less tests less worries.
#vibecoding #copilot #githubcopilot
[Перевод] Что нового в WebStorm 2025.3
Команда JavaScript for Devs подготовила перевод статьи о нововведениях WebStorm 2025.3. В обновлении — новая тема интерфейса Islands, серьёзные улучшения для монорепозиториев, поддержка удалённой отладки и интеграция умных ИИ-агентов прямо в IDE.
https://habr.com/ru/articles/974648/
#WebStorm #IDE #JetBrains #TypeScript #монорепозитории #Vitest
B umge/ts-base là template thư viện TypeScript bắt đầu tích hợp many công cụ: Vitest, Biome, tsdown, CI, JSR, Deno... AngularJS migrated here? Th“对 hỗ trợ amis từ Reddit của @FutureIncrease. [Giải Parlamento] #TypeScript #Vitest #Biome #JSR #Deno #OpenSource #JavaScript
https://www.reddit.com/r/opensource/comments/1p6kyuz/bgubtsbase_starter_ts_library_template_vitest/
Un standard pour les lib de validation TypeScript (Zod, Valibot, etc.).
L'objectif est d'avoir une spec standardisée pour que les outils interagissant avec ces schémas fonctionnent quel que soit la lib de validation choisie. Un peu comme les PSR rn PHP.
Vitest supporte d'ailleurs ce format depuis la v4, pour rendre certaines assertions plus faciles à écrire.
Vitest + Playwright + Visual Regression Testing = ⚡️
The new browser testing features in Vitest 4 are pretty great for testing a small web component package.
https://wbrowar.com/article/code/web-component-testing-with-vitest-4
Vitest 4 is out!
🎊 Browser Mode is Stable
👀 Visual Regression Testing
🛠️ Improved Debugging
⛵️ Pool Stabilization
✨ New APIs
✅ Bug Fixes
Stay updated with our blog post: https://vitest.dev/blog/vitest-4
Anybody else notice that #vitest coverage is a bit off now with v4 release? It keeps showing uncovered lines that were fine before.
Nová verze Vitest 4.0 posouvá hranice testování webových aplikací. Přináší stabilní běh testů přímo v prohlížeči, podporu vizuálního regresního testování i chytřejší práci s lokátory a typováním. Vývojáři tak získávají robustnější, rychlejší a přehlednější nástroje pro zajištění kvality UI i logiky aplikací.
Vitest 4 est de sortie, avec son lot de *breaking changes*.
What’s New in ViteLand: September 2025 Recap, by @manniL (@voidzero.dev):