zitadel/internal/integration/integration_test.go

17 lines
206 B
Go
Raw Normal View History

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