diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index cb1ed22..5edc315 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -510,7 +510,7 @@ pub struct ExportGenesisContext { impl Default for TestExecutionContext { fn default() -> Self { - Self::parse_from(["execution-context"]) + Self::parse_from(["execution-context", "--test", "some_path"]) } } @@ -612,7 +612,7 @@ impl AsRef for TestExecutionContext { impl Default for BenchmarkingContext { fn default() -> Self { - Self::parse_from(["benchmarking-context"]) + Self::parse_from(["benchmarking-context", "--test", "some_path"]) } }