zitadel/internal/integration/integration_test.go
2023-04-28 14:39:53 +03:00

17 lines
206 B
Go

//go:build integration
package integration
import (
"testing"
"time"
)
func TestNewTester(t *testing.T) {
ctx, _, cancel := Contexts(time.Hour)
defer cancel()
s := NewTester(ctx)
defer s.Done()
}