.continue/rules/unit-testing-rules.md
For unit testing in this project:
The project uses Vitest and Jest for testing. Prefer Vitest.
Run tests from within the specific package directory (e.g., cd core && ..).
*.vitest.tsvitest from within the specific package/module directory:
cd [directory] && vitest -- [test file path]
*.test.tsnpm test from within the specific package/module directory:
cd [directory] && npm test -- [test file path]
test() functions - DO NOT use describe() blocks