oxc/tasks/prettier_conformance/src/main.rs

18 lines
503 B
Rust

#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: jemallocator::Jemalloc = jemallocator::Jemalloc;
#[cfg(target_os = "windows")]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
use oxc_prettier_conformance::{TestRunner, TestRunnerOptions};
use pico_args::Arguments;
fn main() {
let mut args = Arguments::from_env();
let options = TestRunnerOptions { filter: args.opt_value_from_str("--filter").unwrap() };
TestRunner::new(options).run();
}