delete test test_deserialization_main, since it isnot actual anymore

This commit is contained in:
Akulij 2025-05-21 13:04:08 +05:00
parent d1b6d153d4
commit c33c67044a

View File

@ -521,16 +521,6 @@ mod tests {
println!("Val: {:?}", val.to_string());
}
#[test]
fn test_deserialization_main() {
let runner = Runner::init().unwrap();
let val = runner.run_script(include_str!("../mainbot.js")).unwrap();
let s: RunnerConfig = from_js(unsafe { runner.context.context_raw() }, &val).unwrap();
println!("deser: {:#?}", s);
let o = val.try_into_object().unwrap();
println!("o: {:?}", recursive_format(o));
}
#[test]
fn test_func_deserialization_main() {
let runner = Runner::init().unwrap();