mod common;
use common::wash;
#[test]
#[ignore]
fn integration_up_basic() {
let up = wash()
.args(&["up"])
.output()
.expect("failed to launch repl");
assert!(up.status.success());
}
#[test]
#[ignore]
fn integration_up_all_flags() {
const LOG_LEVEL: &str = "info";
const RPC_HOST: &str = "0.0.0.0";
const RPC_PORT: &str = "4222";
let up = wash()
.args(&[
"up",
"--log-level",
LOG_LEVEL,
"--host",
RPC_HOST,
"--port",
RPC_PORT,
])
.output()
.expect("failed to launch repl");
assert!(up.status.success());
}