Files
grafana/pkg/services/preference/prefimpl/xorm_store_test.go
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

17 lines
337 B
Go

package prefimpl
import (
"testing"
"github.com/grafana/grafana/pkg/infra/db"
"github.com/grafana/grafana/pkg/util/testutil"
)
func TestIntegrationXORMPreferencesDataAccess(t *testing.T) {
testutil.SkipIntegrationTestInShortMode(t)
testIntegrationPreferencesDataAccess(t, func(ss db.DB) store {
return &sqlStore{db: ss}
})
}