chore: create separate go.mod file for testing dependencies for wasm tests

that use Chromium headless browser to avoid use of older incompatible version.

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2025-09-11 10:41:47 +02:00
committed by Ron Evans
parent 381644a0c0
commit e80c6c48a1
5 changed files with 39 additions and 30 deletions
+17
View File
@@ -0,0 +1,17 @@
module github.com/tinygo-org/tinygo/tests/wasm
go 1.24
require (
github.com/chromedp/cdproto v0.0.0-20250803210736-d308e07a266d
github.com/chromedp/chromedp v0.14.1
)
require (
github.com/chromedp/sysutil v1.1.0 // indirect
github.com/go-json-experiment/json v0.0.0-20250725192818-e39067aee2d2 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
golang.org/x/sys v0.34.0 // indirect
)