mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
14 lines
203 B
Go
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
|
|
}
|