mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-22 05:40:50 +02:00

* fix(notifications): default templates and logic * fix multi-entry report notifs and add test * add tests for log queueing
15 lines
292 B
Go
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")
|
|
}
|