looprs 0.1.11

Concise coding assistant REPL
Documentation
# Testing Guide

## Running Tests

```bash
# All tests (fast)
cargo nextest run

# Specific crate
cargo nextest run -p looprs-desktop

# With coverage
cargo llvm-cov nextest --html

# Watch mode
cargo watch -x "nextest run"
```

## Test Categories

- **Unit**: `src/**/*.rs` - Fast, isolated component tests
- **Integration**: `tests/*.rs` - End-to-end workflows
- **UI**: `crates/looprs-desktop/tests/ui/*.rs` - Headless component tests
- **Property**: Tests with `proptest!` macro - Randomized input testing
- **Snapshot**: Tests using `insta::assert_snapshot!` - Output regression testing