Commit f4568ef5 by Torkel Ödegaard

trying to get more unit tests working

parent 8fe4422d
...@@ -19,6 +19,9 @@ define([ ...@@ -19,6 +19,9 @@ define([
'kbn', 'kbn',
'moment', 'moment',
'./timeSeries', './timeSeries',
'services/filterSrv',
'services/annotationsSrv',
'services/datasourceSrv',
'jquery.flot', 'jquery.flot',
'jquery.flot.events', 'jquery.flot.events',
'jquery.flot.selection', 'jquery.flot.selection',
......
/*define([ /*define([
//'services/all' 'panels/graphite/module'
], function() { ], function() {
'use strict'; 'use strict';
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
}); });
}); });
}); });
}); });
*/ */
\ No newline at end of file
...@@ -29,6 +29,7 @@ require.config({ ...@@ -29,6 +29,7 @@ require.config({
jquery: '../vendor/jquery/jquery-1.8.0', jquery: '../vendor/jquery/jquery-1.8.0',
bootstrap: '../vendor/bootstrap/bootstrap', bootstrap: '../vendor/bootstrap/bootstrap',
'bootstrap-tagsinput': '../vendor/tagsinput/bootstrap-tagsinput',
'jquery-ui': '../vendor/jquery/jquery-ui-1.10.3', 'jquery-ui': '../vendor/jquery/jquery-ui-1.10.3',
...@@ -94,6 +95,9 @@ require.config({ ...@@ -94,6 +95,9 @@ require.config({
'bindonce': ['angular'], 'bindonce': ['angular'],
'angular-strap': ['angular', 'bootstrap','timepicker', 'datepicker'], 'angular-strap': ['angular', 'bootstrap','timepicker', 'datepicker'],
'bootstrap-tagsinput': ['jquery'],
timepicker: ['jquery', 'bootstrap'], timepicker: ['jquery', 'bootstrap'],
datepicker: ['jquery', 'bootstrap'], datepicker: ['jquery', 'bootstrap'],
...@@ -118,13 +122,15 @@ require([ ...@@ -118,13 +122,15 @@ require([
angular.module('kibana', []); angular.module('kibana', []);
angular.module('kibana.services', ['$strap.directives']); angular.module('kibana.services', ['$strap.directives']);
angular.module('kibana.panels', []);
angular.module('kibana.filters', []);
require([ require([
'specs/lexer-specs', 'specs/lexer-specs',
'specs/parser-specs', 'specs/parser-specs',
'specs/gfunc-specs', 'specs/gfunc-specs',
'specs/filterSrv-specs', 'specs/filterSrv-specs',
'specs/kbn-format-specs' 'specs/kbn-format-specs',
], function () { ], function () {
window.__karma__.start(); window.__karma__.start();
}); });
......
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