diff --git a/compiler/natives/src/crypto/tls/cache_test.go b/compiler/natives/src/crypto/tls/cache_test.go new file mode 100644 index 000000000..a0881b3fb --- /dev/null +++ b/compiler/natives/src/crypto/tls/cache_test.go @@ -0,0 +1,13 @@ +//go:build js + +package tls + +import "testing" + +func TestCertCache(t *testing.T) { + t.Skip("GC based Cache is not supported by GopherJS") +} + +func BenchmarkCertCache(b *testing.B) { + b.Skip("GC based Cache is not supported by GopherJS") +}