Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/plugin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,22 @@ mod hostile {

#[tokio::test(flavor = "multi_thread")]
async fn scheme_actor_wasm_dispatches_report_parent_with_args_first() {
let required_paths = [
"../lambda-ma/scheme-actor/actor.wasm",
"../lambda-ma/scheme-actor/stdlib.ma",
"../lambda-ma/scheme-actor/actor.ma",
"../lambda-ma/scheme-actor/state.ma",
"../lambda-ma/actors/agent.ma",
"../lambda-ma/actors/duck.ma",
];
if required_paths
.iter()
.any(|path| !std::path::Path::new(path).exists())
{
eprintln!("skipping scheme actor integration test; lambda-ma fixtures not present");
return;
}

let kubo = MockKubo::start().await;
let (envelope_tx, mut envelope_rx) =
tokio::sync::mpsc::unbounded_channel::<(String, SendEnvelope)>();
Expand Down