1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-04-05 11:45:43 +00:00
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()
}