Select the types of activity you want to include in your feed.
1package systemtenant 2 3import ( 4 "context" 5 "testing" 6 7 "github.com/stretchr/testify/require" 8) 9 10func TestSystemtenantRoundtrip(t *testing.T) { 11 if Is(context.Background()) { 12 t.Fatal() 13 } 14 require.True(t, Is(UnsafeCtx)) 15}