Skip to content

Commit 956409c

Browse files
authored
Merge pull request #1325 from Workiva/fixCryptoCacheTests
[go1.20] Adding skips to some crypto tests
2 parents eacb580 + 0cf44a4 commit 956409c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//go:build js
2+
3+
package tls
4+
5+
import "testing"
6+
7+
func TestCertCache(t *testing.T) {
8+
t.Skip("GC based Cache is not supported by GopherJS")
9+
}
10+
11+
func BenchmarkCertCache(b *testing.B) {
12+
b.Skip("GC based Cache is not supported by GopherJS")
13+
}

0 commit comments

Comments
 (0)