Add lsystem.kcl to tests (#4146)

* Add lsystem.kcl to tests

* Reduce iterations

* Fix the user settings flake shit (NOTE TO ALL FUTURE PEOPLE MODELING-APP DOES NOT WAIT FOR I/O IN SOME CASES BEFORE ROUTER NAVIGATION)
This commit is contained in:
49fl
2024-10-29 21:40:31 -04:00
committed by GitHub
parent 3f86f99f5e
commit 90b57ec202
9 changed files with 163 additions and 5 deletions

View File

@ -121,6 +121,14 @@ async fn kcl_test_execute_kittycad_svg() {
assert_out("kittycad_svg", &result);
}
#[tokio::test(flavor = "multi_thread")]
async fn kcl_test_execute_lsystem() {
let code = kcl_input!("lsystem");
let result = execute_and_snapshot(code, UnitLength::Mm).await.unwrap();
assert_out("lsystem", &result);
}
#[tokio::test(flavor = "multi_thread")]
async fn kcl_test_member_expression_sketch() {
let code = kcl_input!("member_expression_sketch");