Select the types of activity you want to include in your feed.
1package e2e 2 3import ( 4 "flag" 5 "io" 6 "log" 7 "os" 8 "testing" 9) 10 11func TestMain(m *testing.M) { 12 flag.Parse() 13 if !testing.Verbose() { 14 log.SetOutput(io.Discard) 15 } 16 os.Exit(m.Run()) 17}