fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

at tngl 253 B View raw
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(WithUnsafeContext(context.Background()))) 15}