From bf470b17a723550ea5a69d1bd023d99f8b3ddb2d Mon Sep 17 00:00:00 2001 From: Jackson Miller Date: Thu, 11 Dec 2025 13:10:28 -0600 Subject: [PATCH] fix vue3 instructions to use vitest instead of jest jest is not supported with vite. --- instructions/vuejs3.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/vuejs3.instructions.md b/instructions/vuejs3.instructions.md index 7c3f74fd..879cf2c2 100644 --- a/instructions/vuejs3.instructions.md +++ b/instructions/vuejs3.instructions.md @@ -101,7 +101,7 @@ Instructions for building high-quality VueJS 3 applications with the Composition - Implement breadcrumb data via route meta fields ### Testing -- Write unit tests with Vue Test Utils and Jest +- Write unit tests with Vue Test Utils and Vitest - Focus on behavior, not implementation details - Use `mount` and `shallowMount` for component isolation - Mock global plugins (router, Pinia) as needed