From ebb8537cf1e8a1cb3bac83011aba1b2dae58fb3e Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Fri, 8 May 2026 11:49:02 +0000 Subject: [PATCH] docs: remove note regarding lack of support for ng test --debug in browser mode This is no longer the case. Closes #68621 (cherry picked from commit b3de3af0ddc6d3ede5263e962b440df3e317c164) --- adev/src/content/guide/testing/migrating-to-vitest.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/adev/src/content/guide/testing/migrating-to-vitest.md b/adev/src/content/guide/testing/migrating-to-vitest.md index 082c2d1fca3..095d67d0af8 100644 --- a/adev/src/content/guide/testing/migrating-to-vitest.md +++ b/adev/src/content/guide/testing/migrating-to-vitest.md @@ -132,8 +132,6 @@ Add the `browsers` option to your `test` target's options. The browser name depe Headless mode is enabled automatically if the `CI` environment variable is set or if a browser name includes "Headless" (e.g., `ChromeHeadless`). Otherwise, tests will run in a headed browser. -NOTE: Debugging with `ng test --debug` is not supported by browser mode. - ## Automated test refactoring with schematics IMPORTANT: The `refactor-jasmine-vitest` schematic is experimental and may not cover all possible test patterns. Always review the changes made by the schematic.