| 12 | using wasmtime::Store; |
| 13 | |
| 14 | TEST(component_async, config) { |
| 15 | Config config; |
| 16 | config.wasm_component_model_async(true); |
| 17 | config.wasm_component_model_more_async_builtins(true); |
| 18 | config.wasm_component_model_async_stackful(true); |
| 19 | Engine engine(std::move(config)); |
| 20 | } |
| 21 | |
| 22 | TEST(component_async, call_func_async) { |
| 23 | static constexpr auto component_text = std::string_view{ |
nothing calls this directly
no test coverage detected