grafana/pkg/services/ngalert/notifier/alertmanager_test.go
gotjosh 9b52ffc6a9
Alerting: Fetch configuration from the database and run a notification service (#32175)
* Alerting: Fetch configuration from the database and run a notification
instance

Co-Authored-By: Ganesh Vernekar <15064823+codesome@users.noreply.github.com>
2021-03-24 14:20:44 +00:00

14 lines
188 B
Go

package notifier
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestAlertmanager(t *testing.T) {
t.SkipNow()
am := &Alertmanager{}
require.NoError(t, am.Init())
}