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