mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-08 20:28:06 -05:00
8 lines
275 B
Bash
Executable File
8 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test from main browser thread
|
|
WASM_BINDGEN_USE_BROWSER=1 wasm-pack test --headless --chrome --firefox -- --features no-bundler
|
|
|
|
# Test from worker thread
|
|
WASM_BINDGEN_USE_DEDICATED_WORKER=1 wasm-pack test --headless --chrome --firefox -- --features no-bundler
|