Files
grafana/pkg/services/dashboardversion/dashverimpl/xorm_store_test.go
T
Peter Štibraný 7fd9ab9481 Replace check for integration tests. (#110707)
* Replace check for integration tests.
* Revert changes in pkg/tsdb/mysql packages.
* Fix formatting of few tests.
2025-09-08 15:49:49 +02:00

20 lines
378 B
Go

package dashverimpl
import (
"testing"
"github.com/grafana/grafana/pkg/infra/db"
"github.com/grafana/grafana/pkg/util/testutil"
)
func TestIntegrationXORMGetDashboardVersion(t *testing.T) {
testutil.SkipIntegrationTestInShortMode(t)
testIntegrationGetDashboardVersion(t, func(ss db.DB) store {
return &sqlStore{
db: ss,
dialect: ss.GetDialect(),
}
})
}