Commit 7be2105f by Torkel Ödegaard

Merge pull request #1272 from matschaffer/plugin-spec-support

Allow for plugin testing.
parents 49ee388d 85e50ece
define([
'./helpers',
'helpers',
'panels/graph/module'
], function(helpers) {
'use strict';
......
define([
'./helpers',
'helpers',
'angular',
'jquery',
'components/timeSeries',
......
define([
'./helpers',
'helpers',
'services/graphite/graphiteDatasource'
], function(helpers) {
'use strict';
......
define([
'./helpers',
'helpers',
'services/graphite/gfunc',
'controllers/graphiteTarget'
], function(helpers, gfunc) {
......
define([
'./helpers',
'helpers',
'services/influxdb/influxdbDatasource'
], function(helpers) {
'use strict';
......
define([
'./helpers',
'helpers',
'controllers/row'
], function(helpers) {
'use strict';
......
define([
'./helpers',
'helpers',
'panels/graph/seriesOverridesCtrl'
], function(helpers) {
'use strict';
......
define([
'./helpers',
'helpers',
'controllers/sharePanelCtrl'
], function(helpers) {
'use strict';
......
define([
'mocks/dashboard-mock',
'./helpers',
'helpers',
'moment',
'services/templateValuesSrv'
], function(dashboardMock, helpers, moment) {
......
define([
'mocks/dashboard-mock',
'./helpers',
'helpers',
'lodash',
'services/timeSrv'
], function(dashboardMock, helpers, _) {
......
......@@ -4,7 +4,8 @@ require.config({
paths: {
specs: '../test/specs',
mocks: '../test/mocks',
config: '../config.sample',
helpers: '../test/specs/helpers',
config: ['../config', '../config.sample'],
kbn: 'components/kbn',
store: 'components/store',
......@@ -96,9 +97,10 @@ require.config({
require([
'angular',
'config',
'angularMocks',
'app',
], function(angular) {
], function(angular, config) {
'use strict';
for (var file in window.__karma__.files) {
......@@ -113,7 +115,7 @@ require([
angular.module('grafana.panels', []);
angular.module('grafana.filters', []);
require([
var specs = [
'specs/lexer-specs',
'specs/parser-specs',
'specs/gfunc-specs',
......@@ -135,9 +137,14 @@ require([
'specs/kbn-format-specs',
'specs/dashboardSrv-specs',
'specs/dashboardViewStateSrv-specs'
], function () {
window.__karma__.start();
];
var pluginSpecs = (config.plugins.specs || []).map(function (spec) {
return '../plugins/' + spec;
});
require(specs.concat(pluginSpecs), function () {
window.__karma__.start();
});
});
......@@ -3,6 +3,7 @@ module.exports = function(config) {
src: [
'Gruntfile.js',
'<%= srcDir %>/app/**/*.js',
'<%= srcDir %>/plugins/**/*.js',
'!<%= srcDir %>/app/panels/*/{lib,leaflet}/*',
'!<%= srcDir %>/app/dashboards/*'
],
......
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