Replies: 1 comment 4 replies
-
So lets say we have a project using use assert_cmd::prelude::*;
use std::process::Command;
#[test]
fn run_integration_test() {
let mut cmd = Command::cargo_bin("app").unwrap();
cmd.assert().success();
} Then we can just do |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We're building a library that not only being tested by unit tests but also as part E2E tests.
When can I find the instrumented build binaries?
This is how I build the library
cargo tarpaulin --no-run
How can I collect coverage info as part of the E2E tests?
Beta Was this translation helpful? Give feedback.
All reactions