mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 20:13:35 -06:00
c63ebc887b
* Chore: Run integration tests without grabpl * Add new step for integration tests in lib.star * Remove old integration test step from lib.star * Change drone signature * Fix: Edit starlark integration step to not affect enterprise * Remove all build tags & rename starlark integration test step * Resync .drone.yml with .drone.star * Fix lint errors * Fix lint errors * Fix lint errors * Fix more lint errors * Fix another lint error * Rename integration test step * Fix last lint error * Recomment enterprise step * Remove comment from Makefile Co-authored-by: Ida Furjesova <ida.furjesova@grafana.com>
18 lines
335 B
Go
18 lines
335 B
Go
package sqlstore
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestIntegrationGetDBHealthQuery(t *testing.T) {
|
|
store := InitTestDB(t)
|
|
|
|
query := models.GetDBHealthQuery{}
|
|
err := store.GetDBHealthQuery(context.Background(), &query)
|
|
require.NoError(t, err)
|
|
}
|