mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 05:52:22 +08:00
16 lines
189 B
Go
16 lines
189 B
Go
package testsuite
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
)
|
|
|
|
func Run(m *testing.M) {
|
|
db.SetupTestDB()
|
|
code := m.Run()
|
|
db.CleanupTestDB()
|
|
os.Exit(code)
|
|
}
|