1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
This directory contains integration tests that interact with real Claude CLI services.
Integration tests are behind a feature flag and require a working Claude CLI installation.
1. 2.3.
```bash
cargo test --features integration-tests
cargo test --features integration-tests -- --nocapture
cargo test --features integration-tests test_async_client_basic_query
```
The integration tests cover:
- ----
Integration tests are NOT run in CI by default since they require:
- --
To run them locally, use the feature flag as shown above.
When adding new integration tests:
1. 2.3.4.5.