Skip to content

Commit 5ea1c8f

Browse files
committed
feat(test): Auto-redact elapsed time
1 parent 11d0002 commit 5ea1c8f

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ sha1 = "0.10.6"
9191
sha2 = "0.10.8"
9292
shell-escape = "0.1.5"
9393
supports-hyperlinks = "3.0.0"
94-
snapbox = { version = "0.6.5", features = ["diff", "dir", "term-svg"] }
94+
snapbox = { version = "0.6.5", features = ["diff", "dir", "term-svg", "regex"] }
9595
tar = { version = "0.4.40", default-features = false }
9696
tempfile = "3.10.1"
9797
thiserror = "1.0.59"

crates/cargo-test-support/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ git2.workspace = true
2424
glob.workspace = true
2525
itertools.workspace = true
2626
pasetors.workspace = true
27+
regex.workspace = true
2728
serde = { workspace = true, features = ["derive"] }
2829
serde_json.workspace = true
2930
snapbox.workspace = true

crates/cargo-test-support/src/compare.rs

+5
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ pub fn assert_ui() -> snapbox::Assert {
8686
.unwrap();
8787
subs.insert("[ROOT]", root).unwrap();
8888
subs.insert("[ROOTURL]", root_url).unwrap();
89+
subs.insert(
90+
"[ELAPSED]",
91+
regex::Regex::new("Finished.*in (?<redacted>[0-9]+(\\.[0-9]+))s").unwrap(),
92+
)
93+
.unwrap();
8994
snapbox::Assert::new()
9095
.action_env(snapbox::assert::DEFAULT_ACTION_ENV)
9196
.redact_with(subs)

tests/testsuite/lints/warning/stderr.term.svg

+1-1
Loading

0 commit comments

Comments
 (0)