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

Configure Feed

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

at main 190 B View raw
1package gitindex 2 3import ( 4 "flag" 5 "io" 6 "log" 7 "os" 8 "testing" 9) 10 11func TestMain(m *testing.M) { 12 flag.Parse() 13 14 if !testing.Verbose() { 15 log.SetOutput(io.Discard) 16 } 17 18 os.Exit(m.Run()) 19}