Tightened the CLI integration tests to stop relying on wall-clock sleeps—new fs watcher helper waits for session files instead of timing out, and SSE mocks/fixtures make the flows deterministic.
20 lines
465 B
TOML
20 lines
465 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "core_test_support"
|
|
version = { workspace = true }
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_cmd = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
notify = { workspace = true }
|
|
regex-lite = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["time"] }
|
|
walkdir = { workspace = true }
|
|
wiremock = { workspace = true }
|