mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* Alerting: Fetch configuration from the database and run a notification instance Co-Authored-By: Ganesh Vernekar <15064823+codesome@users.noreply.github.com>
14 lines
188 B
Go
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())
|
|
}
|