7 lines
129 B
Bash
7 lines
129 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
RUSTFLAGS="-Ctarget-feature=+simd128" wasm-pack test --headless --firefox
|
||
|
|
wasm-pack test --headless --firefox
|