15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import { createTheme } from '@grafana/data';
|
|
|
|
import { Options } from './types';
|
|
|
|
const theme = createTheme();
|
|
|
|
describe('Heatmap data', () => {
|
|
const options: Options = {} as Options;
|
|
|
|
it('simple test stub', () => {
|
|
expect(theme).toBeDefined();
|
|
expect(options).toBeDefined();
|
|
});
|
|
});
|