mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
20 lines
599 B
TypeScript
20 lines
599 B
TypeScript
import { getResourceDimension } from './resource';
|
|
import { ResourceDimensionMode } from './types';
|
|
|
|
describe('getResourceDimension', () => {
|
|
const publicPath = '/public/';
|
|
beforeAll(() => {
|
|
window.__grafana_public_path__ = publicPath;
|
|
});
|
|
|
|
it('fixed mode', () => {
|
|
const frame = undefined;
|
|
const fixedValue = 'img/icons/unicons/question-circle.svg';
|
|
const config = { mode: ResourceDimensionMode.Fixed, fixed: fixedValue };
|
|
|
|
expect(getResourceDimension(frame, config).fixed).toEqual(publicPath + fixedValue);
|
|
});
|
|
|
|
// TODO: write tests for field and mapping modes
|
|
});
|