mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-24 12:20:06 +00:00
8 lines
161 B
Bash
8 lines
161 B
Bash
|
Mode="$*"
|
||
|
|
||
|
if [ $Mode == "wasm" ]; then
|
||
|
cargo test --features test_utils wasm -- --show-output
|
||
|
else
|
||
|
cargo test --features test_utils -- --show-output
|
||
|
fi
|