2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-22 11:40:06 +00:00

14 lines
203 B
Go

package testutil
import (
"context"
"testing"
)
func TestContext(t *testing.T) context.Context {
t.Helper()
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)
return ctx
}