func Run(f func())
func Wait()
A Bubble is a synctest bubble.
Not a public API. Used by syscall/js to propagate bubble membership through syscalls.
type Bubble struct {
// contains filtered or unexported fields
}
func Acquire() *Bubble
Acquire returns a reference to the current goroutine's bubble. The bubble will not become idle until Release is called.
func (b *Bubble) Release()
Release releases the reference to the bubble, allowing it to become idle again.
func (b *Bubble) Run(f func())
Run executes f in the bubble. The current goroutine must not be part of a bubble.