github.com/gopherjs/gopherjs@v1.19.0-beta1.0.20240506212314-27071a8796e4/compiler/natives/src/net/http/clientserver_test.go (about)

     1  //go:build js && wasm
     2  // +build js,wasm
     3  
     4  package http_test
     5  
     6  import (
     7  	"testing"
     8  )
     9  
    10  func testTransportGCRequest(t *testing.T, h2, body bool) {
    11  	t.Skip("The test relies on runtime.SetFinalizer(), which is not supported by GopherJS.")
    12  }
    13  
    14  func testWriteHeaderAfterWrite(t *testing.T, h2, hijack bool) {
    15  	t.Skip("GopherJS source maps don't preserve original function names in stack traces, which this test relied on.")
    16  }