mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
17 lines
206 B
Go
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()
|
|
}
|