From e256db2910178fa9b46791a146c3b456fbb18642 Mon Sep 17 00:00:00 2001 From: Eric Swanson Date: Sun, 24 Nov 2024 21:36:24 -0800 Subject: [PATCH] checkpoint --- e2e/tests-dfx/extension.bash | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/e2e/tests-dfx/extension.bash b/e2e/tests-dfx/extension.bash index 8f0a3a0723..ce6938ed9e 100644 --- a/e2e/tests-dfx/extension.bash +++ b/e2e/tests-dfx/extension.bash @@ -70,17 +70,19 @@ EOF setup_rust dfx new rbe --type rust-by-extension --no-frontend - dfx new rbc --type rust --no-frontend + #dfx new rbc --type rust --no-frontend echo "RBE" cat rbe/dfx.json find rbe -type f - echo "RBC" - cat rbc/dfx.json - find rbc -type f + #echo "RBC" + #cat rbc/dfx.json + #find rbc -type f cd rbe || exit - cargo update + #cargo update dfx_start assert_command dfx deploy + assert_command dfx canister call rbe_backend greet '("Rust By Extension")' + assert_contains "Hello, Rust By Extension!" } @test "run an extension command with a canister type defined by another extension" {