Commit e015047e by ilgizar

Fixed unit test.

parent 341afe65
...@@ -200,11 +200,10 @@ describe('Graph Y axes aligner', function() { ...@@ -200,11 +200,10 @@ describe('Graph Y axes aligner', function() {
describe('on level not number value', () => { describe('on level not number value', () => {
it('Should ignore without errors', () => { it('Should ignore without errors', () => {
alignY = 'q';
yaxes = [{ min: 5, max: 10 }, { min: 2, max: 4 }]; yaxes = [{ min: 5, max: 10 }, { min: 2, max: 4 }];
expected = [{ min: 5, max: 10 }, { min: 2, max: 4 }]; expected = [{ min: 5, max: 10 }, { min: 2, max: 4 }];
alignYLevel(yaxes, alignY); alignYLevel(yaxes, 'q');
expect(yaxes).toMatchObject(expected); expect(yaxes).toMatchObject(expected);
}); });
}); });
......
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