Skip to content

Commit

Permalink
Update e2e test harness for addition of --output-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchmindtree committed Feb 14, 2022
1 parent f5e874b commit 466d2c9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/src/e2e_vm_tests/harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pub(crate) fn deploy_contract(file_name: &str) -> ContractId {
debug_outfile: None,
offline_mode: false,
silent_mode: !verbose,
output_directory: None,
}))
.unwrap()
}
Expand Down Expand Up @@ -66,6 +67,7 @@ pub(crate) fn runs_on_node(file_name: &str, contract_ids: &[fuel_tx::ContractId]
silent_mode: !verbose,
pretty_print: false,
contract: Some(contracts),
output_directory: None,
};
tokio::runtime::Runtime::new()
.unwrap()
Expand Down Expand Up @@ -133,6 +135,7 @@ pub(crate) fn compile_to_bytes(file_name: &str) -> Result<Vec<u8>, String> {
debug_outfile: None,
offline_mode: false,
silent_mode: !verbose,
output_directory: None,
})
}

Expand Down

0 comments on commit 466d2c9

Please sign in to comment.