Skip to content

Commit c346c1f

Browse files
committed
fix: reporter integration test
1 parent 2e964e9 commit c346c1f

1 file changed

Lines changed: 2 additions & 14 deletions

File tree

crates/stellar-scaffold-reporter/tests/integration.rs

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -86,18 +86,12 @@ log_file = "{log_path}"
8686
"package size missing"
8787
);
8888

89-
// post-dev: build cycle summary
90-
assert!(
91-
stdout.contains("📋 build cycle complete:"),
92-
"post-dev summary missing"
93-
);
94-
95-
// log file should exist and contain the same output
89+
// log file should exist and contain build-phase output
9690
let log_file = env.cwd.join(log_path);
9791
assert!(log_file.exists(), "log file was not created");
9892
let log_content = std::fs::read_to_string(log_file).unwrap();
9993
assert!(log_content.contains("📋 Compile time:"));
100-
assert!(log_content.contains("📋 build cycle complete:"));
94+
assert!(log_content.contains("📋 Deployed soroban_hello_world_contract"));
10195
});
10296
}
10397

@@ -143,12 +137,6 @@ warn_size_kb = 0.1
143137

144138
let stdout = String::from_utf8_lossy(&output.stdout);
145139

146-
// post-dev summary always fires
147-
assert!(
148-
stdout.contains("📋 build cycle complete:"),
149-
"post-dev summary missing"
150-
);
151-
152140
// per-contract metrics suppressed at minimal verbosity
153141
assert!(
154142
!stdout.contains("📋 Compile time:"),

0 commit comments

Comments
 (0)