Turn on abilities tests for gen-wasm

Closes #3708
This commit is contained in:
Ayaz Hafiz 2022-08-09 09:04:34 -07:00
parent 4cb5de4428
commit b572b0b287
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -877,7 +877,7 @@ mod decode_immediate {
}
#[test]
#[cfg(any(feature = "gen-llvm"))]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn dec() {
use roc_std::RocDec;
@ -899,7 +899,7 @@ mod decode_immediate {
}
#[test]
#[cfg(any(feature = "gen-llvm"))]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn decode_list_of_strings() {
assert_evals_to!(
indoc!(
@ -919,7 +919,7 @@ fn decode_list_of_strings() {
#[test]
#[cfg(all(
any(feature = "gen-llvm"), // currently fails on gen-wasm
any(feature = "gen-llvm", feature = "gen-wasm"),
not(feature = "gen-llvm-wasm") // hits a stack limit in wasm3
))]
fn encode_then_decode_list_of_strings() {