AddHumanUser tests

This commit is contained in:
Tim Möhlmann
2023-04-28 14:39:53 +03:00
parent 11ab645bb7
commit 4b7f5ae186
8 changed files with 463 additions and 5 deletions

View File

@@ -3,13 +3,12 @@
package integration
import (
"context"
"testing"
"time"
)
func TestNewTester(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
ctx, _, cancel := Contexts(time.Hour)
defer cancel()
s := NewTester(ctx)