mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
The remaining test cases will perform better with a scope implementation, and while we can implement them without the scope, it still requires us to do what the scope did. --------- Co-authored-by: Boshen <boshenc@gmail.com>
13 lines
339 B
Rust
13 lines
339 B
Rust
use oxc_transform_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(),
|
|
exec: args.contains("--exec"),
|
|
};
|
|
|
|
TestRunner::new(options.clone()).run();
|
|
}
|