mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
fixing based on CJs last comments
This commit is contained in:
parent
69a53eaf26
commit
9e8d71f882
2 changed files with 2 additions and 3 deletions
|
@ -83,7 +83,7 @@ describe('Vislib VisConfig Class Test Suite', function () {
|
|||
|
||||
describe('get Method', function () {
|
||||
it('should be a function', function () {
|
||||
expect(_.isFunction(visConfig.set)).to.be(true);
|
||||
expect(typeof visConfig.get).to.be('function');
|
||||
});
|
||||
|
||||
it('should get the property', function () {
|
||||
|
@ -104,7 +104,7 @@ describe('Vislib VisConfig Class Test Suite', function () {
|
|||
|
||||
describe('set Method', function () {
|
||||
it('should be a function', function () {
|
||||
expect(_.isFunction(visConfig.set)).to.be(true);
|
||||
expect(typeof visConfig.set).to.be('function');
|
||||
});
|
||||
|
||||
it('should set a property', function () {
|
||||
|
|
|
@ -7,7 +7,6 @@ import AxisLabelsProvider from './axis_labels';
|
|||
import AxisScaleProvider from './axis_scale';
|
||||
import AxisConfigProvider from './axis_config';
|
||||
import errors from 'ui/errors';
|
||||
import SCALE_MODES from './scale_modes';
|
||||
|
||||
export default function AxisFactory(Private) {
|
||||
const ErrorHandler = Private(ErrorHandlerProvider);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue