Removing an extranous console.log and fixing the table unit test

This commit is contained in:
Chris Cowan 2014-09-08 11:47:51 -07:00
parent 26683595a5
commit daaf7967ac
2 changed files with 1 additions and 5 deletions

View file

@ -96,7 +96,6 @@
'specs/components/agg_types/index',
'specs/components/vis/index'
], function (kibana, sinon) {
console.log('foo');
kibana.load(function () {
var xhr = sinon.useFakeXMLHttpRequest();

View file

@ -7,9 +7,6 @@ define(function (require) {
// Load the kibana app dependencies.
require('angular-route');
// Load kibana and its applications
require('index');
require('apps/discover/index');
var $parentScope, $scope, config;
@ -381,4 +378,4 @@ define(function (require) {
});
});
});