You can run the tests with the native build for your environment
go test ./...The tests depends on some binaries that must be compiled first
export GOOS="js"
export GOARCH="wasm"
go build -o .\testdata\processors\wasm_worker.wasm .\testdata\processors\wasm_worker.goYou can run the tests in the browser with wasmbrowsertest
export GOOS="js"
export GOARCH="wasm"
go test ./...