Skip to content

Commit

Permalink
chore(tests-e2e): Remove unneeded part from the test
Browse files Browse the repository at this point in the history
It was just an early showcase of the framework.
  • Loading branch information
klochowicz committed Jul 5, 2023
1 parent 707e9bc commit 8fa4c86
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions crates/tests-e2e/tests/basic.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use anyhow::Result;
use native::api;
use tests_e2e::app::run_app;
use tests_e2e::coordinator::Coordinator;
use tests_e2e::fund::fund_app_with_faucet;
Expand All @@ -17,10 +16,6 @@ async fn app_can_be_funded_with_lnd_faucet() -> Result<()> {

let app = run_app().await;

// this is just to showcase we can retrieve value from a SyncReturn
let node_id: String = api::get_node_id().0;
tracing::info!("Node ID: {}", node_id);

// Unfunded wallet should be empty
assert_eq!(app.rx.wallet_info().unwrap().balances.on_chain, 0);
assert_eq!(app.rx.wallet_info().unwrap().balances.lightning, 0);
Expand Down

0 comments on commit 8fa4c86

Please sign in to comment.