windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// wj test - Run Windjammer tests
//
// Discovers and runs Windjammer test files (*_test.wj)

use anyhow::Result;
use std::path::Path;

pub fn execute(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
    )
}