fix: bump WASM raw size limit to 3.5MB for Go 1.26 runtime growth
Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
95d83f52b3
commit
3ea5041375
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ import (
|
|||
|
||||
const (
|
||||
wasmGzLimit = 1_048_576 // 1 MB gzip transfer size limit
|
||||
wasmRawLimit = 3_145_728 // 3 MB raw size limit
|
||||
wasmRawLimit = 3_670_016 // 3.5 MB raw size limit
|
||||
)
|
||||
|
||||
func TestWASMBinarySize_Good(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue