this repo has no description
1# Run all tests 2test: 3 cargo test 4 5# Run specific test suites if needed 6test-repo: 7 cargo test --test repo 8 9test-lifecycle: 10 cargo test --test lifecycle 11 12test-proxy: 13 cargo test --test proxy 14 15test-sync: 16 cargo test --test sync 17 18test-server: 19 cargo test --test server 20 21test-identity: 22 cargo test --test identity 23 24test-auth: 25 cargo test --test auth