()
| 346 | // Attempt to call invoke on a command. |
| 347 | #[test] |
| 348 | fn reactor_invoke() -> Result<()> { |
| 349 | let wasm = build_wasm("tests/all/cli_tests/minimal-reactor.wat")?; |
| 350 | run_wasmtime(&[ |
| 351 | "run", |
| 352 | "--invoke", |
| 353 | "_initialize", |
| 354 | "-Ccache=n", |
| 355 | wasm.path().to_str().unwrap(), |
| 356 | ])?; |
| 357 | Ok(()) |
| 358 | } |
| 359 | |
| 360 | // Run the greeter test, which runs a preloaded reactor and a command. |
| 361 | #[test] |
nothing calls this directly
no test coverage detected