Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/misc/component-async-tests/tests/scenario/read_resource_stream.rs
1693 views
1
use super::util::test_run;
2
use anyhow::Result;
3
4
#[tokio::test]
5
pub async fn async_read_resource_stream() -> Result<()> {
6
test_run(&[test_programs_artifacts::ASYNC_READ_RESOURCE_STREAM_COMPONENT]).await
7
}
8
9