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
//! Common test utilities for integration and scenario tests.
//!
//! This module provides helpers for creating and managing temporary
//! jj repositories in tests.
//!
//! Note: Each integration test file compiles as a separate crate,
//! so not all helpers are used in every test file. We suppress
//! dead_code warnings at the module level.
pub use RemoteRepo;
pub use TestRepo;
/// Check if the `jj` command is available on this system.
/// Macro to skip a test if `jj` is not available.
///
/// Use at the beginning of any test that requires the `jj` CLI.