mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
Disable wasm gen for now
This commit is contained in:
parent
f52e329393
commit
5ba7b81d57
1 changed files with 3 additions and 3 deletions
|
@ -795,7 +795,7 @@ mod decode_immediate {
|
|||
use roc_std::RocStr;
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
#[cfg(any(feature = "gen-llvm"))]
|
||||
fn string() {
|
||||
assert_evals_to!(
|
||||
indoc!(
|
||||
|
@ -816,7 +816,7 @@ mod decode_immediate {
|
|||
macro_rules! num_immediate {
|
||||
($($num:expr, $typ:ident)*) => {$(
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
#[cfg(any(feature = "gen-llvm"))]
|
||||
fn $typ() {
|
||||
assert_evals_to!(
|
||||
&format!(indoc!(
|
||||
|
@ -852,7 +852,7 @@ mod decode_immediate {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
#[cfg(any(feature = "gen-llvm"))]
|
||||
fn dec() {
|
||||
use roc_std::RocDec;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue