mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fixed build issues with last commit (spec file syntax error)
This commit is contained in:
parent
d8cf427425
commit
f849b8cd4b
@ -9,11 +9,13 @@ define([
|
||||
|
||||
beforeEach(module('kibana.services'));
|
||||
beforeEach(module(function($provide){
|
||||
$provide.value('dashboard', dashboardMock.create());
|
||||
$provide.value('filterSrv',{});
|
||||
}));
|
||||
|
||||
beforeEach(inject(function(filterSrv) {
|
||||
_filterSrv = filterSrv;
|
||||
beforeEach(inject(function($controller, $rootScope) {
|
||||
_targetCtrl = $controller({
|
||||
$scope: $rootScope.$new()
|
||||
});
|
||||
}));
|
||||
|
||||
describe('init', function() {
|
||||
@ -23,3 +25,4 @@ define([
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user