github.com/gopherjs/gopherjs@v1.19.0-beta1.0.20240506212314-27071a8796e4/compiler/natives/src/io/io_test.go (about) 1 //go:build js 2 // +build js 3 4 package io_test 5 6 import ( 7 "testing" 8 ) 9 10 func TestMultiWriter_WriteStringSingleAlloc(t *testing.T) { 11 t.Skip() 12 } 13 14 func TestMultiReaderFreesExhaustedReaders(t *testing.T) { 15 t.Skip("test relies on runtime.SetFinalizer, which GopherJS does not implement") 16 } 17 18 func TestCopyLargeWriter(t *testing.T) { 19 // This test actually behaves more or less correctly, but it triggers a 20 // different code path that panics instead of returning an error due to a bug 21 // referenced below. 22 t.Skip("https://github.com/gopherjs/gopherjs/issues/1003") 23 }