[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: update URLs (#8806)

authored by

abeer0 and committed by
GitHub
(Oct 27, 2025, 10:53 AM +0100) 51e9c7b7 c12afb77

+3 -3
+3 -3
CONTRIBUTING.md
··· 29 29 30 30 ### VS Code 31 31 32 - If you want to use break point and explore code execution you can use the ["Run and debug"](https://code.visualstudio.com/docs/editor/debugging) feature from vscode. 32 + If you want to use break point and explore code execution you can use the ["Run and debug"](https://code.visualstudio.com/docs/debugtest/debugging) feature from vscode. 33 33 34 34 1. Add a `debugger` statement where you want to stop the code execution. 35 35 ··· 39 39 40 40 4. It will open a terminal, then type the test command: `pnpm run test` 41 41 42 - 5. The execution will stop and you'll use the [Debug toolbar](https://code.visualstudio.com/docs/editor/debugging#_debug-actions) to continue, step over, restart the process... 42 + 5. The execution will stop and you'll use the [Debug toolbar](https://code.visualstudio.com/docs/debugtest/debugging#_debug-actions) to continue, step over, restart the process... 43 43 44 44 ## Testing Vitest against external packages 45 45 46 - You may wish to test your locally-modified copy of Vitest against another package that is using it. For pnpm, after building Vitest, you can use [`pnpm.overrides`](https://pnpm.io/package_json#pnpmoverrides). Please note that `pnpm.overrides` must be specified in the root `package.json` and you must first list the package as a dependency in the root `package.json`: 46 + You may wish to test your locally-modified copy of Vitest against another package that is using it. For pnpm, after building Vitest, you can use [`pnpm.overrides`](https://pnpm.io/9.x/package_json#pnpmoverrides). Please note that `pnpm.overrides` must be specified in the root `package.json` and you must first list the package as a dependency in the root `package.json`: 47 47 48 48 ```json 49 49 {