Skip to content

Commit fd5375b

Browse files
committed
Solve issues with rs port and core.
1 parent 2b9bad0 commit fd5375b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

source/ports/rs_port/tests/metacall_handle_test.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ fn metacall_handle() {
3636

3737
// Now, testing loading again into an existing handle number 2
3838
// This should make the handle have greet (2) and yeet functions together
39-
40-
// TODO: This has a bug in the core that must be reviewed
41-
/*
4239
const SCRIPT3: &str = "function yeet() { return 3 } \nmodule.exports = { yeet }";
4340

4441
let result3 = load::from_memory(Tag::NodeJS, SCRIPT3, Some(&mut handle2));
@@ -52,5 +49,4 @@ fn metacall_handle() {
5249
let out = metacall_handle_no_arg::<f64>(&mut handle2, "yeet").unwrap();
5350
assert_eq!(out, 3.0, "Testing yeet 2");
5451
}
55-
*/
5652
}

0 commit comments

Comments
 (0)