* Remove is_binary from API * Format * Rename file * Test with more feature combinations * Don't depend on serde for wasm * Fix lint & tests * Don't unwrap to MAX number * Expose undiff to JS * Add undiff tests * Lint * Change name
20 lines
323 B
Bash
Executable file
20 lines
323 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wasm-pack build --target web --features wasm
|
|
cargo test --verbose --features serde -- --include-ignored
|
|
|
|
cargo test
|
|
cargo test --features serde
|
|
cargo test --features wasm
|
|
cargo test --features all
|
|
|
|
wasm-pack test --node --features wasm
|
|
|
|
cd reconcile-js
|
|
npm install
|
|
npm run test
|
|
cd -
|
|
|
|
echo "Success!"
|