Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 682 Bytes

File metadata and controls

26 lines (17 loc) · 682 Bytes

Contributing

Development Workflow

Viewing Components in Vitest Browser Mode

For interactive component development and debugging, use Vitest's UI mode:

vitest --project=browser --ui

This opens the Vitest Dashboard where you can view components rendering live in a real browser tab.

Future: Vitest Workspace Configuration

We plan to implement a split testing workspace to better support WASM and pure logic:

  • --project=logic — Runs in Node.js (pure logic tests)
  • --project=browser — Runs in Vitest Browser Mode (component/integration tests)

Note: This is aspirational. Currently, we use a single turbo test pipeline with JSDOM.