We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e35e3d commit 7a53835Copy full SHA for 7a53835
1 file changed
crates/test/src/moonbit.rs
@@ -120,11 +120,13 @@ impl LanguageMethods for MoonBit {
120
121
fn should_fail_verify(
122
&self,
123
- _name: &str,
+ name: &str,
124
config: &crate::config::WitConfig,
125
_args: &[String],
126
) -> bool {
127
- config.error_context
+ // async-resource-func actually works, but most other async tests
128
+ // fail during codegen or verification
129
+ config.async_ && name != "async-resource-func.wit"
130
}
131
132
fn verify(&self, runner: &Runner, verify: &crate::Verify) -> anyhow::Result<()> {
0 commit comments