[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 browser readme

Vladimir Sheremet (Nov 13, 2024, 3:28 PM +0100) 32be0af7 93b67c24

+7 -21
+7 -21
packages/browser/README.md
··· 1 1 # @vitest/browser 2 2 3 - Browser runner for Vitest. 3 + [Browser runner](https://vitest.dev/guide/browser/) for Vitest. 4 4 5 5 > ⚠️ This package is **experimental**. While this package will be released along with other packages, it will not follow SemVer for breaking changes until we mark it as ready. 6 - 7 - ## Progress 8 - 9 - Current Status: **Working in progress** 10 - 11 - - [x] Init package and integration 12 - - [x] Stub node packages for Vitest runtime 13 - - [x] Works in development mode 14 - - [x] Better log in terminal 15 - - [x] Fulfill tests (using Browser only APIs, Vue and React components) 16 - - [ ] Show progress and error on the browser page 17 - - [x] Headless mode in CI 18 - - [x] Docs 19 - 20 - Related PRs 21 - 22 - - [#1302](https://github.com/vitest-dev/vitest/pull/1302) 23 6 24 7 ## Development Setup 25 8 26 9 At project root: 27 10 28 11 ```bash 29 - pnpm dev 30 - 31 12 cd test/browser 32 - pnpm vitest --browser 13 + # runs relevant tests for the browser mode 14 + # useful to confirm everything works fine 15 + pnpm test 16 + # runs tests as the browser mode 17 + # useful during development 18 + pnpm test-fixtures 33 19 ```