mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 23:20:12 +01:00
15 lines
295 B
Go
15 lines
295 B
Go
package notifications_test
|
|
|
|
import (
|
|
"github.com/onsi/gomega/format"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestNotifications(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
format.CharactersAroundMismatchToInclude = 20
|
|
RunSpecs(t, "Notifications Suite")
|
|
}
|