github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/actor/pushaction/pushaction_suite_test.go (about) 1 package pushaction_test 2 3 import ( 4 "time" 5 6 . "github.com/onsi/ginkgo" 7 . "github.com/onsi/gomega" 8 9 "testing" 10 11 log "github.com/sirupsen/logrus" 12 ) 13 14 func TestPushAction(t *testing.T) { 15 RegisterFailHandler(Fail) 16 RunSpecs(t, "Push Actions Suite") 17 } 18 19 var _ = BeforeEach(func() { 20 SetDefaultEventuallyTimeout(3 * time.Second) 21 log.SetLevel(log.PanicLevel) 22 })