Commit 2e0e8ba7 by Torkel Ödegaard

Fixed solo panel test

parent c283f099
...@@ -17,8 +17,8 @@ function (angular, $) { ...@@ -17,8 +17,8 @@ function (angular, $) {
backendSrv.getDashboard($routeParams.slug) backendSrv.getDashboard($routeParams.slug)
.then(function(dashboard) { .then(function(dashboard) {
$scope.initPanelScope(dashboard); $scope.initPanelScope(dashboard);
}).then(null, function(error) { }).then(null, function(err) {
$scope.appEvent('alert-error', ['Load panel error', error]); $scope.appEvent('alert-error', ['Load panel error', err.message]);
}); });
}; };
......
...@@ -7,7 +7,7 @@ define([ ...@@ -7,7 +7,7 @@ define([
describe('SoloPanelCtrl', function() { describe('SoloPanelCtrl', function() {
var ctx = new helpers.ControllerTestContext(); var ctx = new helpers.ControllerTestContext();
var datasource = {}; var backendSrv = {};
var routeParams = {}; var routeParams = {};
var search = {}; var search = {};
...@@ -20,9 +20,8 @@ define([ ...@@ -20,9 +20,8 @@ define([
return search; return search;
} }
}, },
datasourceSrv: { templateValuesSrv: { init: sinon.stub() },
getGrafanaDB: sinon.stub().returns(datasource) backendSrv: backendSrv
}
})); }));
beforeEach(ctx.createControllerPhase('SoloPanelCtrl')); beforeEach(ctx.createControllerPhase('SoloPanelCtrl'));
...@@ -47,7 +46,7 @@ define([ ...@@ -47,7 +46,7 @@ define([
routeParams.id = 1; routeParams.id = 1;
search.panelId = 23; search.panelId = 23;
datasource.getDashboard = sinon.stub().returns(ctx.$q.when(dashboard)); backendSrv.getDashboard = sinon.stub().returns(ctx.$q.when(dashboard));
ctx.scope.init(); ctx.scope.init();
ctx.scope.$digest(); ctx.scope.$digest();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment