test: reduce test output noise

This commit is contained in:
nils måsén 2021-11-01 19:36:38 +01:00
parent ec43ecedc4
commit 2c8695683d
3 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,7 @@
package actions_test
import (
"github.com/sirupsen/logrus"
"testing"
"time"
@ -14,6 +15,7 @@ import (
func TestActions(t *testing.T) {
RegisterFailHandler(Fail)
logrus.SetOutput(GinkgoWriter)
RunSpecs(t, "Actions Suite")
}