From f6c39bc2a941f0361f697cf50132fd21466510af Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 17 Oct 2024 13:57:49 +0100 Subject: [PATCH] feat: fix JIT being disabled by default in tests --- crates/lune/src/tests.rs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/crates/lune/src/tests.rs b/crates/lune/src/tests.rs index d5f5640..ecf01b2 100644 --- a/crates/lune/src/tests.rs +++ b/crates/lune/src/tests.rs @@ -31,13 +31,15 @@ macro_rules! create_tests { // The rest of the test logic can continue as normal let full_name = format!("{}/tests/{}.luau", workspace_dir.display(), $value); let script = read_to_string(&full_name).await?; - let mut lune = Runtime::new().with_args( - ARGS - .clone() - .iter() - .map(ToString::to_string) - .collect::>() - ); + let mut lune = Runtime::new() + .with_jit(true) + .with_args( + ARGS + .clone() + .iter() + .map(ToString::to_string) + .collect::>() + ); let script_name = full_name .trim_end_matches(".luau") .trim_end_matches(".lua")