Commit f849b8cd by Torkel Ödegaard Committed by Bruce Sherrod

fixed build issues with last commit (spec file syntax error)

parent d8cf4274
...@@ -9,11 +9,13 @@ define([ ...@@ -9,11 +9,13 @@ define([
beforeEach(module('kibana.services')); beforeEach(module('kibana.services'));
beforeEach(module(function($provide){ beforeEach(module(function($provide){
$provide.value('dashboard', dashboardMock.create()); $provide.value('filterSrv',{});
})); }));
beforeEach(inject(function(filterSrv) { beforeEach(inject(function($controller, $rootScope) {
_filterSrv = filterSrv; _targetCtrl = $controller({
$scope: $rootScope.$new()
});
})); }));
describe('init', function() { describe('init', function() {
...@@ -22,4 +24,5 @@ define([ ...@@ -22,4 +24,5 @@ define([
_filterSrv.init(); _filterSrv.init();
}); });
}); });
});
}); });
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