From 7e96e300b14587a4ebf86777cc6e465d2e589446 Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Sun, 31 Mar 2024 14:15:20 +0200 Subject: [PATCH] Test e2e in release mode --- tests/e2e.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e.rs b/tests/e2e.rs index 79b7b9d..490acc6 100644 --- a/tests/e2e.rs +++ b/tests/e2e.rs @@ -3,7 +3,7 @@ use std::process::{Command, Stdio}; #[test] fn test_example_app() { let output = Command::new("cargo") - .args(["run", "--example", "test"]) + .args(["run", "--example", "test", "--release"]) .stdout(Stdio::piped()) .spawn() .expect("should spawn tests app")