Files
grafana/pkg/services/apikey/apikeyimpl/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
329 B
Go

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