refactor: improving structure, moving things into a core module

This commit is contained in:
Torkel Ödegaard
2015-09-15 08:17:40 +02:00
parent 9dec50832d
commit 5545cdbf4d
39 changed files with 1193 additions and 1244 deletions

View File

@@ -1,17 +1,16 @@
define([
'directives/valueSelectDropdown',
'core/directives/value_select_dropdown',
],
function () {
'use strict';
describe("SelectDropdownCtrl", function() {
var scope;
var ctrl;
var tagValuesMap = {};
var rootScope;
beforeEach(module('grafana.controllers'));
beforeEach(module('grafana.core'));
beforeEach(inject(function($controller, $rootScope, $q) {
rootScope = $rootScope;
scope = $rootScope.$new();

View File

@@ -149,7 +149,7 @@ require([
'specs/singlestat-specs',
'specs/dynamicDashboardSrv-specs',
'specs/unsavedChangesSrv-specs',
'specs/valueSelectDropdown-specs',
'specs/value_select_dropdown_specs',
'specs/opentsdbDatasource-specs',
'specs/cloudwatch-datasource-specs',
'specs/elasticsearch-specs',