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