mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
35 lines
983 B
TypeScript
35 lines
983 B
TypeScript
import * as ticks from '../utils/ticks';
|
|
|
|
describe('ticks', () => {
|
|
describe('getFlotTickDecimals()', () => {
|
|
const ctx: any = {};
|
|
|
|
beforeEach(() => {
|
|
ctx.axis = {};
|
|
});
|
|
|
|
it('should calculate decimals precision based on graph height', () => {
|
|
let dec = ticks.getFlotTickDecimals(0, 10, ctx.axis, 200);
|
|
expect(dec.tickDecimals).toBe(1);
|
|
expect(dec.scaledDecimals).toBe(1);
|
|
|
|
dec = ticks.getFlotTickDecimals(0, 100, ctx.axis, 200);
|
|
expect(dec.tickDecimals).toBe(0);
|
|
expect(dec.scaledDecimals).toBe(-1);
|
|
|
|
dec = ticks.getFlotTickDecimals(0, 1, ctx.axis, 200);
|
|
expect(dec.tickDecimals).toBe(2);
|
|
expect(dec.scaledDecimals).toBe(3);
|
|
});
|
|
});
|
|
|
|
describe('getStringPrecision()', () => {
|
|
it('"3.12" should return 2', () => {
|
|
expect(ticks.getStringPrecision('3.12')).toBe(2);
|
|
});
|
|
it('"asd" should return 0', () => {
|
|
expect(ticks.getStringPrecision('asd.asd')).toBe(0);
|
|
});
|
|
});
|
|
});
|