execute

Function execute 

Source
pub fn execute(args: &TestArgs) -> Result<(), String>
Expand description

Execute the test command

Runs the project’s test suite using cargo test.

§Examples

# Run all tests
dampen test

# Run specific test
dampen test my_test_name

# Run tests for specific package
dampen test -p my-app

# Run with verbose output
dampen test --verbose

# Pass arguments to test binary
dampen test -- --nocapture

# Run tests in release mode
dampen test --release

# Run only ignored tests
dampen test --only-ignored