From 80202bffeeeeec88aac232c462b414bd130ce773 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 19 Nov 2025 11:03:49 -0500 Subject: [PATCH] docs: add note about Karma/Jasmine examples in testing services guide This guide currently contains Karma/Jasmine specific code examples. Adding a note to inform readers that Vitest equivalents are being worked on. --- adev/src/content/guide/testing/services.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adev/src/content/guide/testing/services.md b/adev/src/content/guide/testing/services.md index 41570ea43c1..dac0eacf356 100644 --- a/adev/src/content/guide/testing/services.md +++ b/adev/src/content/guide/testing/services.md @@ -1,5 +1,7 @@ # Testing services +NOTE: While this guide is being updated for Vitest, some code examples currently use Karma/Jasmine syntax and APIs. We are actively working to provide Vitest equivalents where applicable. + To check that your services are working as you intend, you can write tests specifically for them. Services are often the smoothest files to unit test.