diff --git a/testing/testing.go b/testing/testing.go index 3c3e591..bf8afd3 100644 --- a/testing/testing.go +++ b/testing/testing.go @@ -13,11 +13,7 @@ import ( ) func Start(ctx common.Context) { - ctx.WaitGroup().Add(1) - go func() { - scopes.Start(ctx) - ctx.WaitGroup().Done() - }() + scopes.Start(ctx) time.Sleep(100 * time.Millisecond) }