mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 11:03:10 +08:00
15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
import { createTheme } from '@grafana/data';
|
|
|
|
import { PanelOptions } from './models.gen';
|
|
|
|
const theme = createTheme();
|
|
|
|
describe('Heatmap data', () => {
|
|
const options: PanelOptions = {} as PanelOptions;
|
|
|
|
it('simple test stub', () => {
|
|
expect(theme).toBeDefined();
|
|
expect(options).toBeDefined();
|
|
});
|
|
});
|