Testing Lit components with @vitest/browser in the browser.
This repo is using a custom vitest and @vitest/browser package versions from this PR.
This repo is using pnpm as package manager.
pnpm install && pnpm run test
If you're working with the Vitest PR 3584 and you want to change somehing on it, you will need to build Vitest and create tgz files for vitest and @vitest/browser packages:
- run
nr build && pnpm packfrom root: will generatevitest-0.xx.z.tgz(xx.zis the Vitest version) - open another terminal and change to
packages/browserfolder (cd packages/browser) and runpnpm pack: will generatevitest-browser-0.xx.z.tgz(xx.zis the Vitest version)
If you want to run your fork of this repository in StackBlitz, you NEED to include Vitest PR 3674: none provider changes in your Vitest PR 3584 local fork.
Once you've generated vitest and @vitest/browser in your local, uninstall both dev dependencies in your local fork in this repository, don't remove the corresponding tgz files before uninstalling the dependencies:
- run
pnpm remove -D @vitest/browser - run
pnpm remove -D vitest
Override both tar.gz files in your local fork in this repo and add both dependencies using the file: protocol:
pnpm add -D ./vitest-0.xx.z.tgzpnpm add -D ./vitest-browser-0.xx.z.tgz