Files
DawnandTyler Longwell 4444e01132 refactor(desktop): split native_relay_client tests into a sibling file
The lifecycle tests added for the retry-eviction fix pushed
`native_relay_client.rs` to 1292 lines, over the desktop file-size
ratchet's 1000-line limit for new files.

Moves `closed_recovery_tests` into `native_relay_client_tests.rs` behind
`#[cfg(test)] #[path = ...]`, the same convention `archive/sync.rs` uses
for `sync_tests.rs`. Source drops to 685 lines and the tests to 611.

Production code is byte-identical and the test module moved verbatim
apart from dedenting; a `#[path]` module is still a child module, so
`use super::*` continues to reach the private items the tests drive and
no visibility changed. The mutant matrix was re-run at these bytes
rather than inherited: all six mutants stay killed with the same
attribution.

Co-authored-by: Tyler Longwell <tlongwell@squareup.com>
Signed-off-by: Tyler Longwell <tlongwell@squareup.com>
2026-08-15 22:40:06 -04:00
..
2026-08-03 21:51:17 -04:00
2026-03-09 13:02:11 -07:00
2026-06-11 15:06:24 +00:00
2026-03-09 13:02:11 -07:00

Buzz

Desktop chat shell with:

  • Tauri + React + TypeScript + Vite
  • Tailwind CSS
  • shadcn/ui-ready shared components
  • Biome (lint/format/check)
  • Feature-driven frontend structure

Scripts

  • pnpm dev - run the web frontend
  • pnpm tauri dev - run the desktop app
  • pnpm build - typecheck and build frontend
  • pnpm typecheck - TypeScript checks
  • pnpm lint - Biome lint
  • pnpm format - Biome format (write)
  • pnpm check - Biome check

Structure

  • src/shared - reusable app-wide code (ui, lib, styles)
  • src/features - feature modules (vertical slices)
  • src/app - top-level app composition