diff --git a/tests/lurk-nivc-test.rs b/tests/lurk-nivc-test.rs new file mode 100644 index 0000000000..83112d2615 --- /dev/null +++ b/tests/lurk-nivc-test.rs @@ -0,0 +1,12 @@ +use assert_cmd::prelude::*; +use std::process::Command; + +/// TODO: replace this test for more granular ones, specific for the NIVC +/// pipeline steps +#[test] +#[ignore] +fn test_sha256_nivc() { + let mut cmd = Command::new("cargo"); + cmd.args(["run", "--release", "--example", "sha256_nivc"]); + cmd.assert().success(); +}