Releases: agnivade/wasmbrowsertest
Releases · agnivade/wasmbrowsertest
v0.9.0
What's Changed
- exclude more environment variables by @mlctrez in #53
- add coverage tip to readme by @mlctrez in #52
- chore: remove refs to deprecated io/ioutil by @testwill in #54
- Bump to Go 1.20 by @agnivade in #48
- update dependencies by @hajimehoshi in #56
- bump Go version by @agnivade in #58
- Remove parallel tests by @agnivade in #63
- Skipping TestRun on Windows by @agnivade in #64
- Do not cancel context on exception by @agnivade in #65
- Bump versions by @agnivade in #66
New Contributors
Full Changelog: v0.8.0...v0.9.0
0.8.0
0.7.0
Features
- Added a new tool
cleanenv
which can be used to strip certain environment variables prior to running the tool. This can be useful because certain CI environments add an exceedingly large amount of env vars which is then limited by the Go runtime.
Fixes
- Made some improvements to handle Javascript exceptions or Go panics from within the code.
0.6.0
0.5.0
Chores
Update dependencies
Features
- Ability to pass custom flags to the test binary. Now you can pass any non-test related flags that you are using in your code and the tool won't complain.
For example, if your code expects a flag -species
, you can just run GOOS=js GOARCH=wasm go run -exec=wasmbrowsertest file.go -species=human
and your flag will be passed correctly to your program.