|
|
@@ -4,14 +4,15 @@ import (
|
|
|
"path/filepath"
|
|
|
"testing"
|
|
|
|
|
|
+ "github.com/grafana/grafana/pkg/setting"
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
)
|
|
|
|
|
|
func TestPluginScans(t *testing.T) {
|
|
|
|
|
|
Convey("When scaning for plugins", t, func() {
|
|
|
- path, _ := filepath.Abs("../../public/app/plugins")
|
|
|
- err := scan(path)
|
|
|
+ setting.StaticRootPath = filepath.Abs("../../public/")
|
|
|
+ err := Init()
|
|
|
|
|
|
So(err, ShouldBeNil)
|
|
|
So(len(DataSources), ShouldBeGreaterThan, 1)
|