1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-05-19 05:38:19 +00:00

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()
}