zitadel/internal/integration/integration_test.go

18 lines
249 B
Go
Raw Normal View History

//go:build integration
2023-04-25 15:04:35 +03:00
package integration
import (
"context"
"testing"
"time"
)
func TestNewTester(t *testing.T) {
2023-04-26 19:54:47 +03:00
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
2023-04-25 15:04:35 +03:00
defer cancel()
s := NewTester(ctx)
2023-04-25 15:04:35 +03:00
defer s.Done()
}