watchtower/pkg/notifications/notifications_suite_test.go
nils måsén cd0ec88764
fix(notifications): default templates and logic (#1010)
* fix(notifications): default templates and logic
* fix multi-entry report notifs and add test
* add tests for log queueing
2021-09-19 18:06:14 +02:00

15 lines
292 B
Go

package notifications_test
import (
"github.com/onsi/gomega/format"
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestNotifications(t *testing.T) {
RegisterFailHandler(Fail)
format.CharactersAroundMismatchToInclude = 20
RunSpecs(t, "Notifications Suite")
}