feat: fix JIT being disabled by default in tests

This commit is contained in:
Erica Marigold 2024-10-17 13:57:49 +01:00
parent ee68483d2d
commit f6c39bc2a9
No known key found for this signature in database
GPG key ID: E3F23ACCDA539F3B

View file

@ -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::<Vec<_>>()
);
let mut lune = Runtime::new()
.with_jit(true)
.with_args(
ARGS
.clone()
.iter()
.map(ToString::to_string)
.collect::<Vec<_>>()
);
let script_name = full_name
.trim_end_matches(".luau")
.trim_end_matches(".lua")