wasm test suite (#1116)

* wasm: add test suite using headlless chrome
This commit is contained in:
Brad Peabody
2020-05-23 05:12:01 -07:00
committed by GitHub
parent dda576e80b
commit 95f509b109
13 changed files with 447 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
// +build go1.14
package wasm
import (
"testing"
"time"
"github.com/chromedp/chromedp"
)
func TestFmtprint(t *testing.T) {
t.Parallel()
err := run("tinygo build -o " + wasmTmpDir + "/fmtprint.wasm -target wasm testdata/fmtprint.go")
if err != nil {
t.Fatal(err)
}
ctx, cancel := chromectx(5 * time.Second)
defer cancel()
var log1 string
err = chromedp.Run(ctx,
chromedp.Navigate("http://localhost:8826/run?file=fmtprint.wasm"),
chromedp.Sleep(time.Second),
chromedp.InnerHTML("#log", &log1),
waitLog(`test from fmtprint 1
test from fmtprint 2
test from fmtprint 3
test from fmtprint 4`),
)
t.Logf("log1: %s", log1)
if err != nil {
t.Fatal(err)
}
}