// wj test - Run Windjammer tests
//// Discovers and runs Windjammer test files (*_test.wj)
useanyhow::Result;usestd::path::Path;pubfnexecute(filter:Option<&str>)->Result<()>{// Call the main run_tests function from test_runner module
// For now, test current directory with default settings
crate::test_runner::run_tests(Some(Path::new(".")),
filter,false,// nocapture
true,// parallel
false,// json
)}