19 lines
233 B
Go
Raw Normal View History

package xsync
import (
"testing"
"nhooyr.io/websocket/internal/test/assert"
)
func TestGoRecover(t *testing.T) {
t.Parallel()
errs := Go(func() error {
panic("anmol")
})
err := <-errs
assert.Contains(t, err, "anmol")
}