[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.

docs: remove paragraph in Web Test Runner section (#5269)

authored by

Kristján Oddsson and committed by
GitHub
(Feb 22, 2024, 2:26 PM +0100) ec6f56ae d1a06730

-2
-2
docs/guide/comparisons.md
··· 42 42 43 43 [@web/test-runner](https://modern-web.dev/docs/test-runner/overview/) runs tests inside a headless browser, providing the same execution environment as your web application without the need for mocking out browser APIs or the DOM. This also makes it possible to debug inside a real browser using the devtools, although there is no UI shown for stepping through the test, as there is in Cypress tests. 44 44 45 - There is a watch mode, but it is not as intelligent as that of Vitest, and may not always re-run the tests you want. 46 - 47 45 To use @web/test-runner with a Vite project, use [@remcovaes/web-test-runner-vite-plugin](https://github.com/remcovaes/web-test-runner-vite-plugin). @web/test-runner does not include assertion or mocking libraries, so it is up to you to add them. 48 46 49 47 ## uvu