Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Aug 7, 2024
1 parent 4536b79 commit 249773e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
env:
RUST_BACKTRACE: full
TEST_MAINNET_URL: http://localhost:8011
run: cargo test zk
run: cargo test zk -- show-output

zk-smoke-test:
name: zk-smoke-test
Expand Down
1 change: 1 addition & 0 deletions crates/forge/tests/cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ forgetest_init!(build_sizes_no_forge_std, |prj, cmd| {
// tests build output is as expected in zksync mode
forgetest_init!(test_zk_build_sizes, |prj, cmd| {
cmd.args(["build", "--sizes", "--zksync", "--evm-version", "shanghai"]);
println!("{:?}", cmd.stdout_lossy());
let stdout = cmd.stdout_lossy();
assert!(stdout.contains("| Counter | 800 | 450,199 |"), "\n{stdout}");
});
Expand Down
1 change: 1 addition & 0 deletions crates/forge/tests/cli/script.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1543,6 +1543,7 @@ contract DeployScript is Script {
"shanghai",
]);

println!("{:?}", cmd.stdout_lossy());
assert!(cmd.stdout_lossy().contains("ONCHAIN EXECUTION COMPLETE & SUCCESSFUL"));

let run_latest = foundry_common::fs::json_files(prj.root().join("broadcast").as_path())
Expand Down

0 comments on commit 249773e

Please sign in to comment.