Skip to content

Commit

Permalink
wasm-bindgen-test-macro: fix wasm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Oct 10, 2024
1 parent e6c82f5 commit b881041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/test-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pub fn wasm_bindgen_test(

if let Some(path) = attributes.unsupported {
tokens.extend(
quote! { #[cfg_attr(not(all(target_arch = "wasm32", target_os = "unknown")), #path)] },
quote! { #[cfg_attr(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")), #path)] },
);
}

Expand Down

0 comments on commit b881041

Please sign in to comment.