···11# @vitest/browser
2233-Browser runner for Vitest.
33+[Browser runner](https://vitest.dev/guide/browser/) for Vitest.
4455> ⚠️ 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.
66-77-## Progress
88-99-Current Status: **Working in progress**
1010-1111-- [x] Init package and integration
1212-- [x] Stub node packages for Vitest runtime
1313-- [x] Works in development mode
1414-- [x] Better log in terminal
1515-- [x] Fulfill tests (using Browser only APIs, Vue and React components)
1616-- [ ] Show progress and error on the browser page
1717-- [x] Headless mode in CI
1818-- [x] Docs
1919-2020-Related PRs
2121-2222-- [#1302](https://github.com/vitest-dev/vitest/pull/1302)
236247## Development Setup
258269At project root:
27102811```bash
2929-pnpm dev
3030-3112cd test/browser
3232-pnpm vitest --browser
1313+# runs relevant tests for the browser mode
1414+# useful to confirm everything works fine
1515+pnpm test
1616+# runs tests as the browser mode
1717+# useful during development
1818+pnpm test-fixtures
3319```