substrate_manager/ops/
substrate_test.rs1use std::process::Command;
2
3use anyhow::Ok;
4
5use crate::util::{Config, SubstrateResult};
6
7pub struct DevOptions {
8 pub debug: bool,
9}
10
11pub fn test() -> SubstrateResult<()> {
12 Command::new("cargo").args(["+nightly", "test"]).status()?;
13
14 Ok(())
15}