Commit 805dc354 by Tobias Skarhed

Remove extra mock

parent 26f709e8
......@@ -5,26 +5,23 @@ describe('HeatmapCtrl', function() {
let ctx = <any>{};
let $injector = {
get: () => {}
get: () => {},
};
let $scope = {
$on: () => {},
events: {
on: () => {}
}
};
HeatmapCtrl.prototype.panel = {
HeatmapCtrl.prototype.panel = {
events: {
on: () => {},
emit: () => {}
}
};
on: () => {},
emit: () => {},
},
};
beforeEach(() => {
ctx.ctrl = new HeatmapCtrl($scope, $injector, {});
});
beforeEach(() => {
ctx.ctrl = new HeatmapCtrl($scope, $injector, {});
});
describe('when time series are outside range', function() {
beforeEach(function() {
......
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