We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40479d1 commit f72eb0eCopy full SHA for f72eb0e
src/wasm-lib/grackle/src/tests.rs
@@ -1047,14 +1047,7 @@ fn store_object_with_array_property() {
1047
#[ignore = "haven't done API calls or stdlib yet"]
1048
#[test]
1049
fn stdlib_api_calls() {
1050
- let program = "const x0 = startSketchAt([0, 0])
1051
- const x1 = line([0, 10], x0)
1052
- const x2 = line([10, 0], x1)
1053
- const x3 = line([0, -10], x2)
1054
- const x4 = line([0, 0], x3)
1055
- const x5 = close(x4)
1056
- const x6 = extrude(20, x5)
1057
- show(x6)";
+ let program = include_str!("../../tests/executor/inputs/cube.kcl");
1058
must_plan(program);
1059
}
1060
0 commit comments