tech(): fixed broken tests due to angularjs upgrade

This commit is contained in:
Torkel Ödegaard
2016-03-28 20:44:32 +02:00
parent 70b66382eb
commit 82ad5a632d
7 changed files with 11 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ describe('PrometheusDatasource', function() {
ctx.$httpBackend = $httpBackend;
ctx.$rootScope = $rootScope;
ctx.ds = $injector.instantiate(PrometheusDatasource, {instanceSettings: instanceSettings});
$httpBackend.when('GET', /\.html$/).respond('');
}));
describe('When querying prometheus with one target using query editor target spec', function() {

View File

@@ -8,6 +8,7 @@ describe('PrometheusMetricFindQuery', function() {
var ctx = new helpers.ServiceTestContext();
var instanceSettings = {url: 'proxied', directUrl: 'direct', user: 'test', password: 'mupp' };
beforeEach(angularMocks.module('grafana.core'));
beforeEach(angularMocks.module('grafana.services'));
beforeEach(angularMocks.inject(function($q, $rootScope, $httpBackend, $injector) {
@@ -15,6 +16,7 @@ describe('PrometheusMetricFindQuery', function() {
ctx.$httpBackend = $httpBackend;
ctx.$rootScope = $rootScope;
ctx.ds = $injector.instantiate(PrometheusDatasource, {instanceSettings: instanceSettings});
$httpBackend.when('GET', /\.html$/).respond('');
}));
describe('When performing metricFindQuery', function() {