mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
feat: fix JIT being disabled by default in tests
This commit is contained in:
parent
ee68483d2d
commit
f6c39bc2a9
1 changed files with 9 additions and 7 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue