zitadel/internal/integration/integration_test.go

17 lines
206 B
Go
Raw Normal View History

//go:build integration
2023-04-25 15:04:35 +03:00
package integration
import (
"testing"
"time"
)
func TestNewTester(t *testing.T) {
2023-04-28 14:39:53 +03:00
ctx, _, cancel := Contexts(time.Hour)
2023-04-25 15:04:35 +03:00
defer cancel()
s := NewTester(ctx)
2023-04-25 15:04:35 +03:00
defer s.Done()
}