mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
Fixed solo panel test
This commit is contained in:
parent
c283f0996d
commit
2e0e8ba705
@ -17,8 +17,8 @@ function (angular, $) {
|
||||
backendSrv.getDashboard($routeParams.slug)
|
||||
.then(function(dashboard) {
|
||||
$scope.initPanelScope(dashboard);
|
||||
}).then(null, function(error) {
|
||||
$scope.appEvent('alert-error', ['Load panel error', error]);
|
||||
}).then(null, function(err) {
|
||||
$scope.appEvent('alert-error', ['Load panel error', err.message]);
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -7,7 +7,7 @@ define([
|
||||
|
||||
describe('SoloPanelCtrl', function() {
|
||||
var ctx = new helpers.ControllerTestContext();
|
||||
var datasource = {};
|
||||
var backendSrv = {};
|
||||
var routeParams = {};
|
||||
var search = {};
|
||||
|
||||
@ -20,9 +20,8 @@ define([
|
||||
return search;
|
||||
}
|
||||
},
|
||||
datasourceSrv: {
|
||||
getGrafanaDB: sinon.stub().returns(datasource)
|
||||
}
|
||||
templateValuesSrv: { init: sinon.stub() },
|
||||
backendSrv: backendSrv
|
||||
}));
|
||||
|
||||
beforeEach(ctx.createControllerPhase('SoloPanelCtrl'));
|
||||
@ -47,7 +46,7 @@ define([
|
||||
|
||||
routeParams.id = 1;
|
||||
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.$digest();
|
||||
|
Loading…
Reference in New Issue
Block a user