mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
trying to get more unit tests working
This commit is contained in:
parent
8fe4422d21
commit
f4568ef589
@ -19,6 +19,9 @@ define([
|
||||
'kbn',
|
||||
'moment',
|
||||
'./timeSeries',
|
||||
'services/filterSrv',
|
||||
'services/annotationsSrv',
|
||||
'services/datasourceSrv',
|
||||
'jquery.flot',
|
||||
'jquery.flot.events',
|
||||
'jquery.flot.selection',
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*define([
|
||||
//'services/all'
|
||||
'panels/graphite/module'
|
||||
], function() {
|
||||
'use strict';
|
||||
|
||||
@ -26,5 +26,6 @@
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
*/
|
@ -29,6 +29,7 @@ require.config({
|
||||
jquery: '../vendor/jquery/jquery-1.8.0',
|
||||
|
||||
bootstrap: '../vendor/bootstrap/bootstrap',
|
||||
'bootstrap-tagsinput': '../vendor/tagsinput/bootstrap-tagsinput',
|
||||
|
||||
'jquery-ui': '../vendor/jquery/jquery-ui-1.10.3',
|
||||
|
||||
@ -94,6 +95,9 @@ require.config({
|
||||
'bindonce': ['angular'],
|
||||
'angular-strap': ['angular', 'bootstrap','timepicker', 'datepicker'],
|
||||
|
||||
'bootstrap-tagsinput': ['jquery'],
|
||||
|
||||
|
||||
timepicker: ['jquery', 'bootstrap'],
|
||||
datepicker: ['jquery', 'bootstrap'],
|
||||
|
||||
@ -118,13 +122,15 @@ require([
|
||||
|
||||
angular.module('kibana', []);
|
||||
angular.module('kibana.services', ['$strap.directives']);
|
||||
angular.module('kibana.panels', []);
|
||||
angular.module('kibana.filters', []);
|
||||
|
||||
require([
|
||||
'specs/lexer-specs',
|
||||
'specs/parser-specs',
|
||||
'specs/gfunc-specs',
|
||||
'specs/filterSrv-specs',
|
||||
'specs/kbn-format-specs'
|
||||
'specs/kbn-format-specs',
|
||||
], function () {
|
||||
window.__karma__.start();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user