File tree Expand file tree Collapse file tree
crates/stellar-scaffold-reporter/tests Expand file tree Collapse file tree Original file line number Diff line number Diff 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:" ) ,
You can’t perform that action at this time.
0 commit comments